thymeleaf的配置

明天,你好啊發表於2019-01-18

1、在springboto專案中使用thymeleaf標籤,必須先新增依賴,如下。

<dependency>
  1. <groupId>org.springframework.boot</groupId>
  2. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  3. </dependency>

2、在application.properties中配置一些常用的thymeleaf,如下。

spring.thymeleaf.prefix=classpath:/templates/ spring.thymeleaf.check-template-location=true spring.thymeleaf.suffix=.html spring.thymeleaf.encoding=UTF-8 spring.thymeleaf.content-type=text/html spring.thymeleaf.mode=HTML5 spring.thymeleaf.cache=false

可參考部落格:https://blog.csdn.net/ice_lemon_g/article/details/73609020

相關文章