• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

usebean is not working with jsp

 
Greenhorn
Posts: 7
MyEclipse IDE Tomcat Server
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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
 
Sheriff
Posts: 22783
131
Eclipse IDE Spring VI Editor Chrome Java Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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.
 
reply
    Bookmark Topic Watch Topic
  • New Topic