简体   繁体   English

播放框架2.3.x的pdf模块

[英]pdf module for play framework 2.3.x

I have a application which should generate simple tables as report in pdf. 我有一个应用程序,应该以pdf格式生成简单的表格作为报告。 But I cannot find any easy solution. 但是我找不到任何简单的解决方案。 I hoped that I can find some pdf module, but it seems that it does not exist. 我希望可以找到一些pdf模块,但似乎不存在。 I found only PDF module for Play Framework 1.x and play20-pdf which is not longer supported. 我发现不再支持Play Framework 1.x和play20-pdf的PDF模块。 I know that I can use a pdf library listed for example here What is the best PDF open source library for Java? 我知道我可以使用此处列出的pdf库,例如, 什么是Java最好的PDF开源库? , but I wanted to avoid adding some powerful tool when everything what I need is save simple view with tables as pdf. ,但是当我需要将带有表格的简单视图另存为pdf时,我想避免添加一些功能强大的工具。

iReport is one of the most popular solutions ( http://community.jaspersoft.com/project/ireport-designer ). iReport是最受欢迎的解决方案之一( http://community.jaspersoft.com/project/ireport-designer )。 You can create your PDF report in 'iReport Designer' and then connect it directly to the database or you can fill the report from the java code using jasperreports library: 您可以在“ iReport Designer”中创建PDF报告,然后将其直接连接到数据库,或者可以使用jasperreports库从Java代码填充报告:

<dependency>
    <groupId>net.sf.jasperreports</groupId>
    <artifactId>jasperreports</artifactId>
    <version>5.5.0</version>
</dependency>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM