JasperReports: How to call a java bean method in report template?

微笑、不失礼 提交于 2019-11-27 21:31:23

Using the keyword _THIS in a field name or description will make it map to the bean class itself. Using the fieldDescription tag is better as it allows you to do this with multiple beans.

For example:

<field name="customBean" class="com.example.customBean">
    <fieldDescription>_THIS</fieldDescription>
</field>

Then you can call methods in an expression like this:

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