| 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
|
|
|