eyck / grails-birt-report

Grails BIRT Report plugin
http://grails.org/plugin/birt-report
Apache License 2.0
5 stars 9 forks source link

Grails Auto-Deploy /images/report/ issue "Resource reload failed!" #13

Open BinaryBlock opened 10 years ago

BinaryBlock commented 10 years ago

Hello.

I am trying to generate HTML using my *.rptdesign file.

It appears that Birt plugin is storing tmp report images in my Grails /web-app/ folder "/web-app/images/report".

When the report runs and generates, it spits out this error multiple times: "Resource reload failed!"

Is there way to exclude this directory from Grails auto-deploy? I tried (in Config.groovy):

grails.resources.adhoc.excludes = ["/images/report/*"]

But that doesn't seem to work.

I have also tried setting the birt.imageUrl (in Config.groovy) to:

birt.imageUrl = java.io.tmpdir;

Any help would be appreciated!

Thank you in advance.