Thymeleaf使用
1 | "spring.thymeleaf") (prefix = |
-
只要我们把HTML页面放在classpath:/templates/,thymeleaf就能自动渲染;
-
使用:
1、导入thymeleaf的名称空间
1 | <html lang="en" xmlns:th="http://www.thymeleaf.org"> |
2、使用thymeleaf语法;
1 |
|
3、语法规则
1)、th:text;改变当前元素里面的文本内容;
- th:任意html属性;来替换原生属性的值
2)、表达式
1 | Simple expressions:(表达式语法) |
开发期间模板引擎页面修改以后,要实时生效
3)、禁用模板引擎的缓存
1 | # 禁用缓存 |