简介Thymeleaf是用于Web和独立开发环境的服务器端Java模板引擎。
Thymeleaf的主要目标是为开发工作流程带来优雅的自然模板 - HTML可以在浏览器中正确显示,也可以作为静态原型,从而在开发团队中实现更强的协作。
Maven使用Thymeleaf,首先需要引入依赖:
org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-thymeleaf
开发环境需要关闭缓存application.yml
spring: thymeleaf: cache: false #默认true mode: HTML5 #默认HTML5
在resources
建立templates
在html中声明th标签
然后就可以在文件中使用th标签了
静态资源的具体路径如下
配置完controller
简单的例子就完成了。
需要注意的是,thymeleaf默认是严格校验html的。
需要修改application.yml
spring: thymeleaf: mode: LEGACYHTML5
并增加maven依赖
nekohtml nekohtml 1.9.6.2