Is there a way to set a limit on the size of a JasperReport? We just looked at a WebSphere 6.1 Heapdump and someone tried to create a report and it was 1.5GB of memory in the heap. And it brought our Websphere server to its knees. Thanks, T
|
|
I'm not familiar with JasperReports, but you could wrap your I/O streams to ensure that the amount of data read/written does not exceed a defined limit. OutputStream example:
It is just as easy to wrap an InputStream. |
||
|
|
|
|
Thanks that seems to work great. |
||
|
|
|
|
Have you tried limiting the rows in the recordset returned from the database? |
||
|
|
