添加依賴
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>net.sourceforge.nekohtml</groupId>
<artifactId>nekohtml</artifactId>
</dependency>
application.yml配置thymeleaf相關(guān)屬性
spring:
thymeleaf:
#開發(fā)時設(shè)為false關(guān)閉緩存,便于調(diào)試,生產(chǎn)環(huán)境為true
cache: false
prefix: classpath:/templates/
suffix: .html
encoding: UTF-8
content-type: text/html
#聲明thymeleaf使用非嚴(yán)格的html
mode: LEGACYHTML5