我有一个spring roo项目,我希望能够允许用户从我的项目中下载pdf。我知道如何生成PDF,但我不完全确定如何在我的春季Roo项目中安装iText 5.1.2。
答案 0 :(得分:0)
要将iText添加到Maven项目,只需添加以下依赖项:
<dependencies>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<version>5.1.2</version>
</dependency>
<dependency>
<groupId>com.itextpdf.tool</groupId>
<artifactId>xmlworker</artifactId>
<version>1.1.0</version>
</dependency>
<!-- other dependency -->
</dependencies>