Java EE Web 应用程序中的数据透视表(交叉表报告)
在 Java EE Web 应用程序中使用任何 JSP/Servlet 框架(例如 Struts/Spring/JSF)呈现交叉表报告/数据透视表的最佳选择是什么?
我们一直在使用 Jasper Reports 或 BIRT 等报告框架来实现这一目标。甚至 Oracle 的 ADF Faces 也具备此功能。
我们想评估一些更轻的东西 - displayTag 类型的轻量级库
What is the best option of rendering crosstab report/pivot table in Java EE Web Application - using any of the JSP/Servlet framework such as Struts/Spring/JSF?
We have been using reporting frameworks like Jasper Reports or BIRT to achieve this. Even ADF Faces from Oracle have the capability.
We would like to evaluate some thing lighter - displayTag kind of light weight library
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我看到这个帖子很旧了,仍然没有任何答案。两种报告风格可能都有开源选项,但我一直找不到它们。所以我想我会提供我公司的解决方案,它是作为我们的工具套件 m-Power 的一部分提供的自定义 J2EE 模板。以下链接是有效的在线示例:
Web 数据透视表报告:
http://www.crazybikes.com/mrcjava/servlet/CBB2E.R00180s
网络交叉表报告:
http://mrc-productivity.com/mrcjava/servlet/MRCFORUM.R01273s
这些只是您可以使用 m-Power 制作的许多报告/应用程序的两个示例。
I see this posting is quite old and still lacks any answer. There might be open source options for both reporting styles, but I have never been able to find them. So I thought I would offer my company's solution which is custom J2EE templates offered as parts of our tool suite, m-Power. The following links are working online examples:
Web Pivot Table Report:
http://www.crazybikes.com/mrcjava/servlet/CBB2E.R00180s
Web Cross-Tab Report:
http://mrc-productivity.com/mrcjava/servlet/MRCFORUM.R01273s
These are just two examples of many reports/apps you can make with m-Power.
寻找杰帕洛。我还记得ZK框架中的一个和TreeGrid中的JS框架。您还可以轻松地在网页中呈现 BIRT 报告,但这不是交互式的。
Look for JPalo. I also recall one in ZK framework an a JS one in TreeGrid. You can also easily render BIRT report in a webpage, but this one won't be interactive.
网络数据透视表是一个不错的选择。它是纯 JavaScript 组件,因此您可以轻松地将其嵌入到任何 Web 应用程序中。
这是 演示 和 文档。
Web Pivot Table is a great choice. It is pure javascript component so that you can easily embed it into any web application.
Here is Demo and Documents.