springboot 中使用thymeleaf
2021-07-02 05:05
标签:must handlers 配置文件 boot 页面 enable Fix mustache text Spring Boot支持FreeMarker、Groovy、Thymeleaf和Mustache四种模板解析引擎,官方推荐使用Thymeleaf。 在Spring Boot中使用Thymeleaf只需在pom中加入Thymeleaf的starter即可: 在Spring Boot 1.5.9.RELEASE版本中,默认的Thymeleaf版本为2.1.6.RELEASE版本,这里推荐使用3.0以上版本。在pom中将Thymeleaf的版本修改为3.0.2.RELEASE: 在Spring Boot中,默认的html页面地址为src/main/resources/templates,默认的静态资源地址为src/main/resources/static。 在Spring Boot配置文件中可对Thymeleaf的默认配置进行修改: 一般开发中将 springboot 中使用thymeleaf 标签:must handlers 配置文件 boot 页面 enable Fix mustache text 原文地址:https://www.cnblogs.com/xiaohu1218/p/9634085.htmlspring-boot-starter-thymeleaf
Thymeleaf默认配置
spring.thymeleaf.cache
设置为false,其他保持默认值即可。
文章标题:springboot 中使用thymeleaf
文章链接:http://soscw.com/index.php/essay/100642.html