Reputation: 19
I want to put ResultSet data into something i can forward to a JSP from a Servlet. Should i be looking into getObject() from the ResultSet interface to make a java List? Is there an easier way?
Upvotes: 0
Views: 2788
Reputation: 325
use bean classes and set the data accordingly in each bean object. Put bean objects into the Arraylist
object and set it into the request object.
Upvotes: 1