如何使用struts2-jasperreports-plugin在jsp页面中嵌入jasper报告

发布于 2024-10-27 08:52:45 字数 692 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

想你只要分分秒秒 2024-11-03 08:52:45

我会使用一些东西来管理我的布局,例如可以帮助撰写页面的图块,并使用它简单地使用目标为“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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文