java之thymeleaf使用

pom.xml增加如下配置



    org.springframework.boot
    spring-boot-starter-thymeleaf
    2.1.4.RELEASE

 

application.properties增加如下配置

#thymelea模板配置
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
spring.thymeleaf.mode=HTML5
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.servlet.content-type=text/html
#热部署文件,页面不产生缓存,及时更新
spring.thymeleaf.cache=false
spring.resources.chain.strategy.content.enabled=true
spring.resources.chain.strategy.content.paths=/**

 

thymeleaf表达式语法参考:

https://www.jianshu.com/p/908b48b10702

 

转载于:https://www.cnblogs.com/glzgc/p/10830987.html

你可能感兴趣的:(java之thymeleaf使用)