thymeleaf 依赖
时间: 2024-06-24 12:01:11 浏览: 178
thymeleaf-jar包
Thymeleaf是一个流行的Java模板引擎,用于Web开发中动态生成HTML内容。在Spring框架中使用Thymeleaf,通常会添加以下依赖到你的Maven或Gradle项目中:
**对于Maven:**
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
```
**对于Gradle(Kotlin DSL):**
```groovy
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
```
**或者,如果你已经有一个基本的Spring Web项目:**
- 如果使用Spring MVC,你需要`spring-webmvc`和`thymeleaf-spring4`或`thymeleaf-spring5`。
- 如果使用Spring Boot,`spring-boot-starter-web`通常包含了Thymeleaf支持。
这些依赖会包含Thymeleaf的核心库、模板解析器以及与Spring整合所需的组件。
阅读全文