あなたはJRBeanArrayDataSourceまたはJRBeanCollectionDataSourceを使用してレポートにあなたのBeanを渡すこともできますし、パラメータマップを使用することができます。
JasperPrint reportPrint = JasperFillManager.fillReport(
this.getClass().getClassLoader().getResourceAsStream("/report.jasper"),
new HashMap<String,Object>(),
new JRBeanArrayDataSource(new YourBean[]{yourBean}));
または
Map<String,Object> params = new HashMap<String,Object>();
params.put("yourBean", yourBean);
JasperPrint reportPrint = JasperFillManager.fillReport(
this.getClass().getClassLoader().getResourceAsStream("/report.jasper"),
params, new JREmptyDataSource());
サンプル[here](http://jasperreports.sourceforge.net/sample.reference/datasource/index.html#javabeandatasources) –