posted 19 years ago
Well you could increase size of the heap Tomcat uses with the -Xmx parameter; just change it in which ever batch file you use to start Tomcat.
A better alternative might be to consider changing how your application is designed to handle large collections of data. 7200 rows is a huge amount of information to render on a web page. If you paginated the results it will be easier to avoid OutOfMemoryExceptions, pluds you would be delivering a easier to read page to the user.