如何使用struts2-jasperreports-plugin在jsp页面中嵌入jasper报告
我正在使用 jasper 报告创建报告,并在我的 Web 应用程序中使用 struts2-jasperreports-plugin 成功生成报告。 报告以 html 格式显示,现在我需要将此报告嵌入到 jsp 页面中,但找不到方法来做到这一点。
有人可以帮我吗?
以下是我使用的struts配置:
<action name="myJasperTest" class="com.action.JasperAction" method="execute">
<result name="success" type="jasper">
<param name="location">jasper\report4.jasper</param>
<param name="dataSource">myList</param>
<param name="format">HTML</param>
<param name="imageServletUrl">/servlets/image?image=</param>
</result>
</action>
I'm creating a report using jasper report and successfully generated the report with struts2-jasperreports-plugin, in my web application.
the report is displayed in html format, now i need to embed this report in a jsp page, but couldn't find a way to do that.
Could some one please help me?
following is the struts configuration i have used:
<action name="myJasperTest" class="com.action.JasperAction" method="execute">
<result name="success" type="jasper">
<param name="location">jasper\report4.jasper</param>
<param name="dataSource">myList</param>
<param name="format">HTML</param>
<param name="imageServletUrl">/servlets/image?image=</param>
</result>
</action>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会使用一些东西来管理我的布局,例如可以帮助撰写页面的图块,并使用它简单地使用目标为“myJasperTest”的 iframe 制作一个 jsp 图块。
我认为没有一种简单的方法可以使用该插件来做到这一点。如果您不偏爱 iframe 解决方案,则可以像在操作中的 Java SE 项目中一样使用 Jasper Reports。捕获生成的 html 并使用 xml 工具或正则表达式按照您想要的方式分割页面(删除标题等)。
I would use something to manage my layout such as tiles which can help compose pages, and using that simply make a jsp tile with an iframe which targets "myJasperTest".
I don't think there is an easy way to do it with the plugin. If you're not partial to an iframe solution, you could use Jasper Reports as you would in a Java SE project in your action. Capture the resulting html and using xml tools, or maybe regular expressions to chop up the page the way you want it (removing the header and what not).