hi,
I have a doubt whether its better to use pagination logic in
jsp and store the data in session or store the same on the persistence layer such as hibernate.
As I understand.
If you are storing in Jsp ,memory use will be high and this is more of model work then view work(storing the data).
If I store it in the persistence layer, the request has to go all the way to get the data.
The scenario is :-
1) User might access any of the pages abruptly and there are lots of pages(100).
2) How does the solution get effected in case of a clustered environment.
Thanks,
Subhadeep