Resolve JasperReports resource paths from inside an archive (embedded tomcat application)

1.2k Views Asked by At

I have a report report.jrxml. All of the resources that the report uses are located in the same directory. Images, subreports and styles, etc.

The directory might be: classpath:path/to/report/.

All resources are referenced in the report design by filename only - no directories are given.
e.g.
<imageExpression><![CDATA["logo.png"]]></imageExpression>
<template><![CDATA["style.jrtx"]]></template>

Reports are compiled by using the maven plug-in.

The application is delivered as a single jar file. It is a webapp running on an embedded tomcat (via java -jar app.jar). It not classically deployed and not unpacked into any kind of known directory structure. All resources are loaded directly from the jar. It works fine with images referenced this way. It doesn't work at all for styles or subreports.
JasperReports expects me to implement the FileResolver to help it find resources it cannot resolve itself. Problem is that the return type is file which does not support loading files from archives...

And this is where I'm stuck. Why can the Jasper engine find images this ways but not other resources?
What can I do now? Any ideas?

1

There are 1 best solutions below

0
On

Try to load the resources in a way as follows:

<subreportExpression><![CDATA[getClass().getResource("/path/to/report/YourReport.jasper")]]></subreportExpression>
<template><![CDATA[getClass().getResource("/path/to/report/YourStyle.jrtx")]]></template>

etc. I'm using reports in the same way as you are describing above (i.e. reports are bundled into the application jar) and this approach works fine to me.