在我的主报告中,我有一个参数ArrayList<Customer>
($P{customers}
),我想将该列表传递给子报告。目前,我正在使用以下数据源表达式:
new net.sf.jasperreports.engine.data.JRBeanCollectionDataSource($P{customers})
但是在子报表中,我想直接使用该List的Customer
个对象作为字段,所以我只有一个字段
$F{customer}
(字段类:Customer
)。
我怎样才能做到这一点?