| Author |
Spliting records per page
|
shaf maff
Ranch Hand
Joined: Sep 07, 2008
Posts: 180
|
|
Hi Guys I am trying to handle 100 of records and want to split them into pages (so only 50 records per page with back/forward links). Im not entirely sure how I should code this. I was thinking of placing all records into a list and then simply use get to call the records. What do you guys think?
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56180
|
|
|
See the JSP FAQ entry on paging.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
shaf maff
Ranch Hand
Joined: Sep 07, 2008
Posts: 180
|
|
Thanks, a good read. But how should code it whilst storing the data in a session ? I am thinking of getting all the records and storing them into a session and then paginating, but that isn't efficient as the servlet might need to load 1000s of records so it would be better to load only the records the user requests.. So an alternative method is checking the session for the requested records, then the DB(if request data not found in session). Does that sound like a good solution? [ September 29, 2008: Message edited by: shaf maff ] [ September 29, 2008: Message edited by: shaf maff ]
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56180
|
|
|
If you want to balance memory load with DB access, caching is a good idea. Just be sure that it's fairly configurable so that you can easily adjust it to suit the conditions.
|
 |
 |
|
|
subject: Spliting records per page
|
|
|