Google App Engine 的报告解决方案
我正处于设计在谷歌应用程序引擎上运行的系统的最初阶段。我的问题是报告。到目前为止,我大约有 75 份报告需要完成,当我完成设计时,我猜 200 份报告不会出格。我想使用 jasper,但显然 GAE 不支持 java.awt,这会破坏 jasper
是否有其他报告包可以为我提供 jasper 或 crystal 的前端开发能力,并且仍然可以使用这种无模式数据模型在 GAE 上运行?
im in very beginning stages of designing a system to be run on google app engine. my problem are reports. so far i have about 75 reports that need done and by the time im finished with the design im guessing 200 isn't going to be out of line. i wanted to use jasper but apparently GAE doesn't support java.awt which breaks jasper
are there any other report packages out there that can give me the front end development power of jasper or crystal and still run on GAE with this schemaless data model?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们一直在使用 pyJasper (https://github.com/hudora/pyJasper)
大约五年来,每天都会处理数百份文件。
要生成报告,您可以通过 http 接口将报告和内容发送到 jasper 服务器。 jasper 服务器是专用的 Amazon EC2 实例。
如果您使用 Python,请查看不同的客户端:
https://github.com/hudora/huTools/blob/master/huTools /pyjasper.py
如果您需要帮助,请随时询问!
We have been using pyJasper (https://github.com/hudora/pyJasper)
for about five years now with several hundred documents daily.
To generate the report, you send the report and the content to the jasper server via a http interface. The jasper server is a dedicated Amazon EC2 instance.
If you use Python, have a look at a different client:
https://github.com/hudora/huTools/blob/master/huTools/pyjasper.py
If you need help, don't hesitate to ask!