我要使用springBoot 来写项目 thymeleaf的依赖版本号给我推荐一个
时间: 2023-06-20 09:07:38 浏览: 85
SpringBoot2整合thymeleaf3及thymeleaf3语法.md
当你使用Spring Boot时,它已经提供了一个默认版本的Thymeleaf依赖。你可以在你的pom.xml文件中添加以下依赖关系:
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
```
这将使用Spring Boot提供的默认版本。如果你想要指定版本,你可以在你的pom.xml文件中指定版本号,例如:
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
<version>2.5.2</version>
</dependency>
```
请注意,这里的版本号是2.5.2。您可以根据您的需求更改版本号。
阅读全文