• 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

Servlet Error: No getter method for property ID of bean app

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
when upgrading from j2sdk 1.4.2_01 to 1.4.2_07 my application that uses struts1.1
fails with the following error:
Servlet Error: No getter method for property ID of bean app
javax.servlet.jsp.JspException: No getter method for property ID of bean app
at org.apache.struts.util.RequestUtils.lookup(RequestUtils.java:742)

is it a problem with jdk or there is not compability between higher jdk version and struts1.1?
what can be the possible solution for this problem?
 
Bartender
Posts: 4121
IntelliJ IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What class does the bean 'app' belong to? It may be that 'app' was a class from the JDK that was being used as a JavaBean in a page, and in the newer JDK it's 'getID' method changed somehow.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic