• 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

Iterate an arraylist of valuobjects in jsp

 
Greenhorn
Posts: 14
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
All:
I have the following problem at hand -
My Action class calls a DAO method that returns an arraylist of ValueObjects. This arraylist is set in the request. Now I am trying to use logic:iterate tag to display the valueobjects as table rows in a jsp page.
Please note that the FormBean is different from the valueObject I am trying to display. If anyone can guide me on how to achieve this, I would be obliged.
Thanks in adv.
 
Author
Posts: 350
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
<logic:iterate id="currentVO" name="nameOfCollection">
<bean:write name="currentVO" property="bar"/>
</logic:iterate>

Best I can do without more specifics.
 
reply
    Bookmark Topic Watch Topic
  • New Topic