I am working on a web application. We are using jasperreports. Compiling jasperreports on every call is an overhead and takes considerable time (4-7 seconds). We thought of precompiling the jrxmls using Spring but still have the ability to re-generate if the jrxml is changed/modified.
Has anybody done this before? If yes, how.
Thanks
I am working on a web application. We are using jasperreports. Compiling jasperreports on
Share
Fileand check itslastModified(), store it in a database (or aHashMap), and on each subsequent need for the jrxml to compare thelastModified()to the value in the database /HashMapand recompile it only if they differ