I recently upgraded to the new version of JXLS (from 1.0.2) and found that it caused a significant performance hit. My use case is writing excel reports based on a template. Previously, the reports were written out in a matter of 4 minutes, but now it takes more than 60 minutes to write out. I am using the
JxlsHelper.getInstance().processTemplate(is, os, context);
call to process the template (following the tutorial here). I tried using both the Transformers (poi and jexcel), but neither gave me the performance that the previous version of JXLS did.
Wondering if anyone else has had a similar experience or has resolved a similar performance issue after upgrading.