springcloud项目中将数据渲染到thymeleaf模板再用itext7将模板转换成PDF该引入哪些相关的maven依赖
时间: 2023-12-10 22:40:53 浏览: 141
spring boot使用thymeleaf模板的方法详解
要将数据渲染到Thymeleaf模板并将其转换为PDF文件,你可以使用以下Maven依赖:
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itext7-core</artifactId>
<version>7.1.15</version>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>html2pdf</artifactId>
<version>3.0.0</version>
</dependency>
```
其中,`spring-boot-starter-thymeleaf`是Spring Boot提供的Thymeleaf依赖,`itext7-core`是iText 7的核心依赖,`html2pdf`是iText 7的HTML到PDF转换器。这些依赖将帮助你实现将数据渲染到Thymeleaf模板并将其转换为PDF文件的功能。
阅读全文