tags:

views:

634

answers:

1

Hi All, In my struts 2 application, I am generating a textual report in jsp. I have already fetched all the required value from databases in ResultSet available in my DAO class. Now, please suggest me the best way to get all the values (present in ResultSet) in my jsp page to show the report. I don’t want to write any login in my jsp. Please suggest ?

A: 

VO, a simple POJO, seems a good choice. Can be done with a list of map, too. It depends which is suitable there.

Adeel Ansari