I have been working with jasper reports for quite some time
All these days, I have compiled .jrxml
files using IReport
tool and copied the .jasper
file in
my web application. I know of the JaperCompileManager
which does compiling of .jrxml
and produce .jasper
files at the run time. Have few queries about it
- Will it compile and produce
.jasper
file each time I open the report or compile and preserve the .jasper file till any change happens in.jrxml
file? - Is there any performance impact in doing this run time compilation
- Which approach is better? Using pre compiled jasper files or use
.jrxmls
for run time compilation?