pom.xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
spring.thymeleaf.cache=false # 这个是配置模板路径的,默认就是templates,可不用配置 spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.mode=HTML5
这个开发配置为false,避免改了模板还要重启服务器
spring.thymeleaf.cache=false
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>