aspose file tools
The moose likes JSP and the fly likes usebean is not working with jsp Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » JSP
Reply Bookmark "usebean is not working with jsp" Watch "usebean is not working with jsp" New topic
Author

usebean is not working with jsp

P Malhotra
Greenhorn

Joined: Jul 27, 2011
Posts: 7

Hi everyone,

I have a jsp page(index.jsp) and I am setting a property through usebean


If I get the property on the same page its working without any problem but if i get the property on other jsp page its not showing any values

MyJsp.jsp page


and I have a Student class with name address and rollno property and I also created getter setters for the name , address and rollno.
and I also tried the session scope and request but its not working with any scope.


Thanks
Rob Spoor
Sheriff

Joined: Oct 27, 2005
Posts: 19216

Because they are nested inside the useBean tag, the getProperty tags are only executed if the bean is created by the useBean tag. If it is reused, as is the case for you, they will be skipped. See http://java.sun.com/products/jsp/tags/syntaxref.fm14.html#9843 for more information.


SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
 
I agree. Here's the link: jrebel
 
subject: usebean is not working with jsp
 
Similar Threads
Whats the error???
setting any object as property in java bean
how to access a bean that has bean created by <jsp:useBean> tag?
jsp:setProperty and bean property naming convention
bean value gives null