thymeleaf模板引擎怎么导依赖
时间: 2024-06-29 11:01:17 浏览: 201
Thymeleaf是一个强大的Java模板引擎,常用于Spring Boot项目中。要在项目中使用Thymeleaf,你需要将其作为Maven或Gradle的依赖添加到你的构建工具中。下面是两种常见构建工具的依赖导入方法:
**对于Maven项目:**
1. 在`pom.xml`文件中添加Thymeleaf的依赖:
```xml
<dependencies>
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf</artifactId>
<version>3.0.14</version> <!-- 最新版本号,替换为实际版本 -->
</dependency>
<!-- 如果使用Spring MVC,还需要这个依赖 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
</dependencies>
```
2. 如果你的项目使用Spring Boot,`spring-boot-starter-thymeleaf`会自动包含Thymeleaf及其相关依赖。
**对于Gradle项目:**
1. 在`build.gradle`(或者`build.gradle.kt`)文件中添加依赖:
```groovy
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
}
```
或者,如果你单独引入Thymeleaf:
```groovy
implementation 'org.thymeleaf:thymeleaf-spring5'
implementation 'org.thymeleaf:thymeleaf'
```
确保替换上述代码中的版本号为你项目的实际需求。
阅读全文