


JRBeanCollectionDataSource: How to show data from the java.util.List from JavaBean?
Question:
In a JavaBean, there's a data member that's a java.util.List. How do you display the data in that List in the Detail band of a report?
Answer:
Here's how to do it:
Working sample
Key points:
- Uses the _THIS expression
- Uses the List (jr:list) component in the Detail band
Code to generate report:
public static void testBuildPdf() { try { Map<string object> params = new HashMap(); JasperReport jasperReport = JasperCompileManager.compileReport(reportSource); JasperPrint jasperPrint = JasperFillManager.fillReport(jasperReport, params, getDataSource()); JasperExportManager.exportReportToPdfFile(jasperPrint, outputFileName); } catch (Exception e) { e.printStackTrace(); } } private static JRDataSource getDataSource() { Collection<beanwithlist> coll = new ArrayList(); coll.add(new BeanWithList(Arrays.asList("London", "Paris"), 1)); coll.add(new BeanWithList(Arrays.asList("London", "Madrid", "Moscow"), 2)); coll.add(new BeanWithList(Arrays.asList("Rome"), 3)); return new JRBeanCollectionDataSource(coll); }</beanwithlist></string>
JavaBean code:
public class BeanWithList { // The member's name can be any. The JR engine is using public getter for extracting field's value private List<string> cities; private Integer id; public BeanWithList(List<string> cities, Integer id) { this.cities = cities; this.id = id; } // getter should be public public List<string> getCities() { return this.cities; } public Integer getId() { return this.id; } }</string></string></string>
JRXML file:
<?xml version="1.0" encoding="UTF-8"?> <jasperreport ...> <subdataset name="dataset1"> <field name="city" class="java.lang.String"> <fielddescription></fielddescription> </field> </subdataset> <field name="id" class="java.lang.Integer"></field> <field name="cities" class="java.util.Collection"></field> <title> <band height="103" splittype="Stretch"> <statictext> <reportelement x="138" y="28" width="258" height="20"></reportelement> <textelement textalignment="Center" verticalalignment="Middle"> <font isbold="true" isitalic="true"></font> </textelement> <text></text> </statictext> </band> </title> <columnheader> <band height="20"> <statictext> <reportelement x="0" y="0" width="100" height="20"></reportelement> <box> <toppen linewidth="1.0"></toppen> <leftpen linewidth="1.0"></leftpen> <bottompen linewidth="1.0"></bottompen> <rightpen linewidth="1.0"></rightpen> </box> <textelement textalignment="Center" verticalalignment="Middle"> <font isbold="true" isitalic="true" isunderline="false"></font> </textelement> <text></text> </statictext> <statictext> <reportelement x="100" y="0" width="100" height="20"></reportelement> <box> <toppen linewidth="1.0"></toppen> <leftpen linewidth="1.0"></leftpen> <bottompen linewidth="1.0"></bottompen> <rightpen linewidth="1.0"></rightpen> </box> <textelement textalignment="Center" verticalalignment="Middle"> <font isbold="true" isitalic="true" isunderline="false"></font> </textelement> <text></text> </statictext> </band> </columnheader> <detail> <band height="20" splittype="Stretch"> <textfield> <reportelement stretchtype="RelativeToTallestObject" x="0" y="0" width="100" height="20"></reportelement> <box leftpadding="10"> <toppen linewidth="1.0"></toppen> <leftpen linewidth="1.0"></leftpen> <bottompen linewidth="1.0"></bottompen> <rightpen linewidth="1.0"></rightpen> </box> <textelement></textelement> <textfieldexpression></textfieldexpression> </textfield> <componentelement> <reportelement x="100" y="0" width="400" height="20"></reportelement> <list xmlns:jr="http://jasperreports.sourceforge.net/jasperreports/components" xsi:schemalocation="http://jasperreports.sourceforge.net/jasperreports/components http://jasperreports.sourceforge.net/xsd/components.xsd" printorder="Vertical"> <datasetrun subdataset="dataset1"> <datasourceexpression></datasourceexpression> </datasetrun> <listcontents height="20" width="400"> <textfield> <reportelement x="0" y="0" width="100" height="20"></reportelement> <box leftpadding="10"> <toppen linewidth="1.0"></toppen> <leftpen linewidth="1.0"></leftpen> <bottompen linewidth="1.0"></bottompen> <rightpen linewidth="1.0"></rightpen> </box> <textelement></textelement> <textfieldexpression></textfieldexpression> </textfield> </listcontents> </list> </componentelement> </band> </detail> </jasperreport>
Result:
Related questions:
- How do I print a list of strings contained within another list in iReport?
- Passing the List of primitive type objects as datasource for subreport
The above is the detailed content of How to Display Data from a JavaBean\'s java.util.List in a JasperReports Detail Band?. For more information, please follow other related articles on the PHP Chinese website!

This article analyzes the top four JavaScript frameworks (React, Angular, Vue, Svelte) in 2025, comparing their performance, scalability, and future prospects. While all remain dominant due to strong communities and ecosystems, their relative popul

This article addresses the CVE-2022-1471 vulnerability in SnakeYAML, a critical flaw allowing remote code execution. It details how upgrading Spring Boot applications to SnakeYAML 1.33 or later mitigates this risk, emphasizing that dependency updat

Java's classloading involves loading, linking, and initializing classes using a hierarchical system with Bootstrap, Extension, and Application classloaders. The parent delegation model ensures core classes are loaded first, affecting custom class loa

The article discusses implementing multi-level caching in Java using Caffeine and Guava Cache to enhance application performance. It covers setup, integration, and performance benefits, along with configuration and eviction policy management best pra

Node.js 20 significantly enhances performance via V8 engine improvements, notably faster garbage collection and I/O. New features include better WebAssembly support and refined debugging tools, boosting developer productivity and application speed.

Iceberg, an open table format for large analytical datasets, improves data lake performance and scalability. It addresses limitations of Parquet/ORC through internal metadata management, enabling efficient schema evolution, time travel, concurrent w

This article explores integrating functional programming into Java using lambda expressions, Streams API, method references, and Optional. It highlights benefits like improved code readability and maintainability through conciseness and immutability

This article explores methods for sharing data between Cucumber steps, comparing scenario context, global variables, argument passing, and data structures. It emphasizes best practices for maintainability, including concise context use, descriptive


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Chinese version
Chinese version, very easy to use
