SpringBoot+Thymeleaf
2020-03-17 本文已影响0人
忘记_3a6a
- pom.xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>net.sourceforge.nekohtml</groupId>
<artifactId>nekohtml</artifactId>
<version>1.9.22</version>
</dependency>
- application.yml
spring:
thymeleaf:
cache: false # 关闭页面缓存
mode: LEGACYHTML5 # 使用非严格的html
encoding: UTF-8
servlet:
content-type: text/html