| Author |
Displaying more than 500 records per page in a jsp
|
sandeep wagh
Greenhorn
Joined: Aug 01, 2007
Posts: 9
|
|
Hi, I have to display about 500 to 1000 records per page in a jsp and those records are coming from an arraylist. Will it be a performance hit and if yes how can i avoid that. Just to be explicit the records will be shown using the display tag in a jsp.
|
 |
Jeanne Boyarsky
internet detective
Marshal
Joined: May 26, 2003
Posts: 26193
|
|
Originally posted by sandeep wagh: Will it be a performance hit and if yes how can i avoid that.
Yes. By definition you would be creating and downloading a huge page. The best way to avoid the performance hit and create a more usable page is to add paging and only show 20, 50, etc records at a time. When was the last time you read 1000 records on a page? Did you enjoy the experience? Was it easy and clear to use?
|
[Blog] [JavaRanch FAQ] [How To Ask Questions The Smart Way] [Book Promos]
Blogging on Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, OCAJP, OCPJP beta, TOGAF part 1 and part 2
|
 |
 |
|
|
subject: Displaying more than 500 records per page in a jsp
|
|
|