Search Results

6
votes

What is the best way to present data from a very large resultset?

It seems like this is a natural place to use pagination of your Hibernate results -- run the query at the Servlet level, and paginate results in a way similar to how this person describes: …
0
votes

Hibernate: OutOfMemoryError persisting Blob when printing log message

The first test is to see if it really is a logging issue. What logger are you using? If it's log4j, then you can try to turn off all logging from Hibernate with the following line in your log4j.p …