springboot整合thymeleaf需要整合那些依赖
时间: 2024-11-06 12:11:07 浏览: 4
springboot整合thymeleaf模板
Spring Boot 整合 Thymeleaf 需要以下几个主要依赖:
1. **Spring Web**:这是基本的Web模块,包含了处理HTTP请求和响应的功能。
2. **Spring Boot Starter Web** 或者 **Spring WebMvc**:这两个 starter 包含了 Spring MVC 的核心功能,包括控制器、视图解析等。
3. **Thymeleaf Starter** 或者 **spring-boot-starter-thymeleaf**:这个starter包引入了 Thymeleaf 模板引擎及其相关的依赖,如Thymeleaf模板解析器和视图Resolver。
4. **Thymeleaf Templates Engine**:这是一项独立的库,提供Thymeleaf的HTML模板支持。
确保你的pom.xml文件或者build.gradle文件中包含了以上依赖。在Spring Boot应用启动完成后,你可以配置Thymeleaf作为默认的视图技术,通过`@ControllerAdvice`或`WebMvcConfigurer`接口来设置视图解析器和模板前缀等配置。
阅读全文