• 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

JspException: No getter method

 
Ranch Hand
Posts: 49
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello All,

I am looking for some help with an exception that I am getting when I try to load my JSP page.

javax.servlet.jsp.JspException: ServletException in '/pages/appEntry/slf/dollarCostAveraging.jsp': No getter method available for property value for bean under name dcaFromFundTypes


The following are snippets of my jsp and SessionData class that I use:








I will appreciate any help in this regard.

Thanks,
Kunal
 
Ranch Hand
Posts: 181
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Each object in your returned list have a "getLabel()" and "getValue()" method. The exception states that "getValue()" does not exist.
 
Kunal Sathe
Ranch Hand
Posts: 49
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Dom. I have managed to fix the issue.
I created ItemBeans and then successfully populated the drop down.
reply
    Bookmark Topic Watch Topic
  • New Topic