JasperTags can read report definitions that are stored both in the context of the Webapplication (i.e are deployed with the WAR) or in an folder that is "outside" of your application.
NB! JasperTags has been developed and tested using JBoss AS 4.x, but should work on other application servers as well
The easiest way to start using JasperTags in your application is to:
<%@ taglib prefix="report" uri="http://jaspertags.sf.net/report" %>
(...)
<report:define var="myReportVar" reportfile="myReport"/>
<report:fill report="${myReportVar}" datasource="jdbc/datasource" />
<report:show report="${myReportVar}" />
(...)
Note: if your report takes parameters, you can add them to the URL of the JSP. JasperTags will automatically loop through GET/POST parameters and match them against the parameters defined in your report definition. If the value of the request parameter does not match the datatype defined in your report definition file, it will simply ignore that parameter.
This makes it easy to integrate as you can build a form using your favourite framework and update the report output based on the values of the parameters defined in that form
JasperReports is a trademark for JasperSoft Corporation.
Java is a trademark for Sun Microsystems, Inc.