`
jollys
  • 浏览: 48070 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类

Jasper Reports using Struts2: Report Parameters

阅读更多
Recently I spent a whole day searching for solutions and experimenting with solutions for how to pass additional report parameters to a Jasper Report from the Struts 2 framework. It took 8 hours because I had to piece together the information that I needed from multiple locations and then I had to experiment and test the solutions in my application.

Therefore, I am taking what I have learned and presenting it here so that others do not have to a waste a similar amount of time on this in the future.

Step1: Configuring the Struts2 JasperReports Plug-in
The Struts2 JasperReports plug-in makes integrating JasperReports into your application simple and even enjoyable. The following shows how to configure a report using this plug-in.

<result-types>
<result-type name="jasper" class="org.apache.struts2.views.jasperreports.JasperReportsResult" default="false"/>
</result-types>
<action name="viewShortReport" class="actions.ShortReport" method="eventsByRating">
<result name="success" type="jasper">
   <param name="location">reports/short_report.jasper</param>
   <param name="dataSource">events</param>
   <param name="format">PDF</param>
</result>
</action>


To pass a Map of additional report parameters to the report you need to include an additional "param name" called "reportParameters" tag within the "result" tag. The value for this tag should be the name of the Map holding the keys and values for the report parameters in your Action, in my case I called the Map "reportParams".

<action name="viewShortReport" class="actions.ShortReport" method="eventsByRating">
 <result name="success" type="jasper">
     <param name="location">reports/short_report.jasper</param>
     <param name="dataSource">events</param>
     <param name="format">PDF</param>
     <param name="reportParameters">reportParams</param>
 </result>
</action>


Step 2: Modify the Report Action
Now go to your Action and expose a getter for the Map that you specified in Step 1. After I made my changes the following code was added to my Action to expose that getter. ** Note: Of course you will need to do the heavy lifting within the heart of the Action to populate the Map with the keys and values that you want passed to the report.

private HashMap reportParams = new HashMap();

public HashMap getReportParams() {
return reportParams;
}

public String eventsByRating() throws Exception {
reportParams.put("sessionName", session.getSessionName());
events = Event.getEventsBySessionIdOrderByRating(sessionId);
...
return SUCCESS;
}


Step 3: Use the Parameters in the Report
As you saw in Step 2 I added a parameter to the Map called "sessionName". Next I need to go into my report and modify the report to get this value out of the parameter map and into the report for display. Here is the XML that I added to my report to make the value for this parameter available to body of the report.

<parameter name="reportParams.sessionName" isforprompting="false" class="java.lang.String"></parameter>


I sincerely hope that this post helps others short circuit the research required to make this happen. Feel free to post a comment or contact me about if you have additional questions or if you experience problems using this advice.
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics