Hi,
I just started using the displayTag to store my entire resultset of objects from a database query and display them in a paginized format within a JSP.
I found that I had to store the entire resultset in the HttpSession, otherwise the displayTag looses the data which advancing to the next page.
My question/concern is storing this large object graph in the session. Should I manually clean up the session after the user leaves the JSP which uses the displayTag? Or perhaps I am missing something. It would be nice if I could store my resultset in the request and have the displayTag manage the memory of these objects.
Thank you