jasper plugin
6% of Grails users
Dependency :
compile ":jasper:1.6.1"Custom repositories :
mavenRepo "https://repository.jboss.org/nexus/"
Summary
This plugin adds easy support for launching jasper reports from GSP pages.
After installing this plugin, run your application and request (app-url)/jasper/demo for a demonstration and instructions.
Installation
Installation
Install the plugin by callinggrails install-plugin jasper
What is installed:
- The jars for executing .jasper reports (already compiled) and/or compiling them from .jrxml files, on the fly, first.
- A GSP taglib for launching reports.
- Corresponding controller and service logic (that can be invoked directly)
- 32x32 icons (web-app/images/icons/*.gif) for every supported file format .
- a demo GSP page
Description
Jasper-Plugin Tutorial
This plugin allows you to integrate reports Jasperreports into your Grails application. This allows you to export data from your DBS to a number of different file formats. Currently the following formats are supported:- HTML
- XML
- CSV
- XLS
- RTF
- TEXT
- ODT
- ODS
- DOCX
- XLSX
- PPTX
Contact
Please report bugs and feature requests at JIRA or at the Grails-User Mailinglist.Authors :- Sebastian Hohns (sebastian.hohns@googlemail.com)
- Marcos Pereira (marcos.pereira@signove.com)
- Egon Jensen
- Craig Jones
- Aaron Eischeid
Index
- Configuration
- Tags
- Services
- Step-by-step guide
- Releases
Configuration
The default location for your report templates is web-app/reports in your project directory. Here you can place your *.jasper or *.jrxml (jrxml files will be compiled automatically by the plugin).Work with jrxml files if you can! They can be compiled by the plugin if a newer jasperreport version is available. This way you don't need to manually recompile all your reports if you want to use the new version with braking changes.You can set another report folder location with the jasper.dir.reports property in your Config.groovy. Of course it's possible to use different locations for different environments.
environments {
development {
// relative to web-app
jasper.dir.reports = '../src/reports'
}
production {
// relative to web-app
jasper.dir.reports = '/home/sampleuser/Jasper-Reports'
}
}Tags
The plugin provides a number of tags to help with the integration in your pages.jasperReport
The jasperReport tag generates a button for every file specified file format. With a click on one of these icons you generate the report which is returned as the response.<g:jasperReport
jasper="sample-jasper-plugin"
format="PDF,HTML,XML,CSV,XLS,RTF,TEXT,ODT,ODS,DOCX,XLSX,PPTX"
name="Parameter Example">
Your name: <input type="text" name="name"/>
</g:jasperReport>- jasper - filepath, relative to your configured report folder, of the report, no file extension needed (Required)
- format - supply the file formats you want to use in a simple list (Required)
- name - name of the report
- delimiter - delimiter between the icons representing the file formats.
- delimiterBefore - delimiter in front of the icons
- delimiterAfter - delimiter at the end of the icons
- description - description of the report
- buttonPosition - position of the icons (top or below)
jasperForm & jasperButton
The jasperForm-Tag works the same way as the jasperReport tag, but gives you more control over how the form is rendered in HTML.Use the jasperButton-Tag inside a jasperForm to submit and generate the report.jasperForm-Attributes:- jasper - filepath, relative to your configured report folder, of the report, no file extension needed. (Required)
- controller - The controller the form will submit to. (Required)
- action - The action the form will submit to. (Required)
- id - The id attribute for the form.
- class - Style class to use for the form. The default is "jasperReport".
- format - The name of the supported output format. ex. 'pdf' or 'PDF'. (Required)
- class - Class of the element in addition to default.
- text - Text to be included next to button ex. 'print'.
<g:jasperForm controller="jasper" action="exampleWithData" id="1498" jasper="w_iReport" > ..form contents.. <g:jasperButton format="pdf" jasper="jasper-test" text="PDF" /> .. other html.. </g:jasperForm>
Services
From version 1.1 upwards it's possible to generate your report, without the controller action from above, with simple service methods (so that you can generate your reports with a cron job in combination with the Quartz plugin).The central element for this feature is a new wrapper class JasperReportDef. Instead of putting everything in the parameter map you create a simple object containing the relevant data.def reportDef = JasperReportDef(name:'your_report.jasper',
fileFormat:JasperExportFormat.PDF_FORMAT
)- name - Name of the Report. (Required)
- fileFormat - Fileformat of the Report. Please use the JasperExportFormat Enum. (Required)
- folder - The folder where you placed your reports. Defaults to /reports if unset and no global setting (jasper.report.dir in Config.groovy) exists.
- reportData - Collection containing the data of your report (leave empty if you want to use a SQL query inside your report)
- locale - Locale to use in the report generation.
- parameters - All additional parameters as a Map.
- generateReport(JasperReportDef reportDef) - Generate a "normal" report.
- generateReport(List<JasperReportDef> reports) - Generate a single response containing multiple reports.
import org.codehaus.groovy.grails.plugins.jasper.JasperExportFormat import org.codehaus.groovy.grails.plugins.jasper.JasperReportDef class YourClass { def jasperService public void yourMethod() { def reportDef = new JasperReportDef(name:'your_report.jasper', fileFormat:JasperExportFormat.PDF_FORMAT ) FileUtils.writeByteArrayToFile(new File("/your/target/path/test.pdf"), jasperService.generateReport(reportDef).toByteArray()) } }
The example above uses the apache common-io FileUtils to store the response on the disc.
Step-by-step guide;
This guide shows how to call JasperReports from within Grails.
Written by Egon Jensen and Marcos FÃÂábio Pereira.
I liked the Racetrack application in Getting Started with Grails, but I'm missing something. Wouldn't it be nice if you were able to create a report with all the races in, say, PDF format?Don't worry; JasperReports can do that, and it is easy to use in Grails.To follow this tutorial, you first have to create the Racetrack application from Getting Started with Grails. But of course you can use your own application, just remember to do the necessary changes as you follow along.First you have to install JasperGrails
grails install-plugin jasper
[...]<div class="paginateButtons"><g:paginate total="${Race.count()}" /> </div> <g:jasperReport jasper="all-races" format="PDF" name="All Races" /></div></body></html>
grails run-app
Open the file and you get a beautiful report with all the races.
OK, I admit it, JasperReports (and iReports) is not my strong side.
Besides, this is a tutorial for JasperGrails, not for JasperReports :-)Let's try another example.This time we will export all the registrations for a given race to Excel. Again we start with modifying the view: "racetrack/grails-app/views/race/show.gsp"
[...]<div class="buttons"><g:form><input type="hidden" name="id" value="${race?.id}" /> <span class="button"><g:actionSubmit class="edit" value="Edit" /></span><span class="button"><g:actionSubmit class="delete" onclick="return warnBeforeRaceDelete();" value="Delete" /></span></g:form></div><g:jasperReport jasper="registrations" format="XLS" name="Registrations"> <input type="hidden" name="race_id" value="${race.id}" /> </g:jasperReport></div></body></html>
<parameter name="race_id" isForPrompting="false" class="java.lang.String"><defaultValueExpression><![CDATA["<parameter error>"]]></defaultValueExpression></parameter><queryString><![CDATA[select * from registration where race_id = $P{race_id}]]></queryString>
Releases
Version 1.5* Update to jasperreport 4.5.0 and POI 3.7
- Support for Images in HTML Reports (thanks to Rafael Gutierrez for the patch)
- various bugfixes
- Update to jasperreport 4.0.0 (sounds like a new major release of the lib, but it isn't)
Version 1.1.0
release 7-Aug-2010New features:
- Update to jasperreport 3.7.4
- generate reports with service methods (see the included demo.gsp for documentation)
Version 1.0.0
release 08-Jul-2010New features:
- Support for OpenDocument and OOXML export (ODS, ODT, DOCX, XLSX, PPTX)
- Option to disable default parameters
- Parameter pass-through
- Japser libraries updated to newest version (3.7.3)
- Refactored service with the ability to create a single document form more than one jrxml/jasper file.
- finally uses packages
Version 0.9.5
release 23-Jan-2009New features:
- New tags which allow for greater control of JasperForms layout and button placement, and unobtrusive JS and CSS. see demo.gsp for documentation
- Icons rendered via CSS and new small PDF icon included
- Can now use latest iReport to edit reports thanks to updated Jasper libraries
Version 0.9 (Thanks to Craig Jones)
(Pending release as of 16-Aug-2008, so obtain from subversion trunk)New features:
- Added many new attributes to <g:jasperReport> that control the rendering (see demo.gsp)
- Now, if the g:jasperReport tag does not have a body, then the rendered HTML will be just a series of one or more <A> tags (no form and no javascript for submitting said form).
- Combined the redundant admin.gsp and howto.gsp into a single demo.gsp.
- Added lots more documentation and examples to demo.gsp.
- The Format attribute is now tolerant of lower case format values (pdf vs. PDF) and spaces between values.
- The tag validation code now checks for the two required attributes: jasper and format
- Rendering now uses and <strong> (rather than nothing and <b>) in places
- No longer renders the word "null" when the name attribute is left blank
- Numerous. (See subversion log.)
Version 0.8
New features:
- Attribute 'from' was removed.
- Attributes 'controller' and 'action' was included.

Version 0.7.7 (Thanks to Achim Breunig)
New features:
- Attribute 'inline=<boolean>' was included in jasperReport tag. Now, pdf-files can be shown inline in the web-browser.
- Bug fixed:
- Solved problem that the 'format'-attribute did not accept spaces.
- Solved problem that sometimes the from-parameter was not found.
- The default locale of the report is the request locale.
- The default subreport folder is the same of the report.
Version 0.7.6
New features:
- The user can to retrieve data report from domain classes:
- Attribute 'from' was included in jasperReport tag.
- XLS parameters were improved: (Thanks to Sebastian Esch)
- One page per sheet;
- Auto detect cell type;
- Remove empty space between rows;
- White page background is disabled.
- Bug fixed:
- Plugin didn't work on Linux (File separator was wrong). (Thanks to Sebastian Esch)
Version 0.7.5
- Bug fixed:
- Bug in JasperService.groovy that can cause connection leaks, connection is never closed. (Thanks to Pass F. B. Travis)
