JasperReports: Cover page

随声附和 提交于 2019-12-01 07:33:39

Directory Discourse

Setting up the subreport is not trivial using Jasper Reports. There are at least two ways to tell a master report where to find sub-reports.

  1. Provide a value for the SUBREPORT_DIR parameter.
  2. Place the subreports within the CLASSPATH.

For solution 1, determine the absolute directory of the master report location at run time. Then, place subreports in relative directories under the master report. Finally, tell the master report the absolute path to the subdirectory containing the subreports.

I have not used solution 2.

Parameterized Master

Consider parameterizing the master report, instead of creating subreports.

  1. Add a list of parameters to the report.
  2. Drag the parameters onto the report header.

If you only have one report, but want to use a different logo (and company name, styling, and so forth), then use parameters to configure the look and feel.

Subreport Usage

I find it useful to create subreports when the queries for the data are nearly the same, but need to group the data in slightly different ways. The master report contains everything that is common (showing input parameters -- so that the report can be recreated, headings, company name, user name, time stamp, page number, and so on), and the subreports focus on the differences. Often, the subreports will overlap and only be executed depending on the value of an input parameter.

Add them to the summary band, you may even chose to have that on a different page. Than on that subreport that you just added, at his summary band you can put another one, and on his, another one and so you go. You can have infinite reports binded together.

I added a break at the end of the title band.

<title>
   <band>
   <break></break>
   </band>
 </title>

This has the effect of a page break.

I possibly misunderstood the question, because the accepted answer goes about discouraging subreports, which are the perfect solution for a cover (just put it in the TITLE band). Subreports are actually the killer feature of JR. It's true they aren't simple, but they can be implemented without any tweaking nor bending of the available toolset. And I use them EXACTLY when the dataset queries are widely different...

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!