<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency>
时间: 2023-06-15 19:06:45 浏览: 90
spring-boot-starter-thymeleaf
这个是一个 Maven 依赖,用于在 Spring Boot 项目中使用 Thymeleaf 模板引擎。Thymeleaf 是一个面向 Web 和独立环境的现代服务器端 Java 模板引擎,它能够处理 HTML、XML、JavaScript、CSS 甚至纯文本。在 Spring Boot 中,可以通过引入 spring-boot-starter-thymeleaf 依赖来快速集成 Thymeleaf,从而实现前后端分离开发和动态页面渲染。
阅读全文