1. 添加依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
**2.在配置文件yml添加配置 **
spring:
thymeleaf:
cache: false #关闭缓存,这个要关闭,不然问题多
thymeleaf使用方面感觉和EL表达式差不多 , 使用变量时,需要在属性前面加th:
例:
<input type="text" name="name" th:value="${user?.name}">
<a th:href="${menu?.url}"><td th:text="@{'菜单名'+${menu?.name}}"></a>
容易入坑的地方
1 使用变量时,如果变量为NULL,页面会报错 所以对象后面需加个'?' , 意思是当对象存在时才会使用
判断语句 if
gt:great than (大于)>
ge:great equal(大于等于)>=
eq:equal (等于)==
lt:less than (小于)<
le:less equal (小于等于)<=
ne:not equal (不等于)!=
例:
<span th:if="${authority.action} eq 'edit'"> </span>
if没有else语句,可以使用switch实现if-else效果
<li th:switch="${sex}">
<a th:case="1" > 男 </a>
<a th:case="2" > 女</a>
<a th:case="*" > 其他</a>
</li>
获取url里的data参数
${#httpServletRequest.getParameter('data')}
时间格式转换
<input type=“text” th:value="${#dates.format(position.creationdate, ‘yyyy-MM-dd’)}"
导入html页面
th:fragment 定义模版名
<span th:th:fragment="leafmenu">
---------html的内容------------
</span>
th:replace 导入模版 common是模版路径 leafmenu是模版名
<span th:replace="common::leafmenu"></span >