springboot整合Thymeleaf模板
小于 1 分钟
SpringBoot 支持如JSP、Thymeleaf、FreeMarker、Mustache、Velocity 等多种模板引擎。
本文整合 Thymeleaf 模版
引入jar
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
代码示例
Github
本文 Github 案例地址
