• 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

ArrayList in Struts 1 ActionForm Indexed Getter Not Found

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have an ActionForm (RevisionActionForm) that I am populating from DB2 and displaying on a page. This form has various fields and a class that contains several other classes and ArrayLists. Right now I am receiving the following message when attempting to load the page:

No getter method for property: "revisionData.ReasonsData" of bean: "revisionBean"



The following are relevant code segments (I have omitted what I feel is irrelevant in order to reduce this post).

JSP


ActionForm


RevisionTO (Holds ArrayList)


On a side note:
If I use simple getter and setters like the following:

The page loads fine and everything displays as I would expect, however when the page is submitted the form no longer has the ArrayList elements (all other fields are loaded as expected). I am assuming that the problem stems from the fact that the ArrayList is built, but no elements exist for the values to be stored in.

I have been researching on the net and experimenting for the last week without success. I apologize if this is obvious but I am a bit rusty at Java and new to Struts. Any and all help would be appreciated.

 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic