spring boot 整合 thymeleaf 及常用语句

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 > 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值