SpringBoot使用thymeleaf模板
2021-04-25 19:29
标签:count framework string velocity ssi lang 计算 set ram thymeleaf官网:https://www.thymeleaf.org/doc/tutorials/3.0/usingthymeleaf.html#introducing-thymeleaf Thymeleaf是一个跟Velocity,FreeMarker类似的模板引擎,它可以完全代替JSP.相比较与其他模板引擎,它有如下三个吸引人的特点: 1、在pom.xml中引入thymeleaf的支持 2、如何关闭thymeleaf缓存 在application.properties文件中进行如下配置: 3、编写模板文件.html 在src/main/resources文件夹下的templates文件夹创建模板文件 index.html 1、变量表达式 变量表达式即OGNL表达式或Spring EL表达式,如下所示: 2、选择(星号)表达式 选择表达式很像变量表达式,不过它们用一个预先选择的对象来代替变量容器(Map)来执行,如下: 3、URL表达式 4、常用的th属性 转载:https://blog.csdn.net/username666/article/details/106207123 5、字符串拼接 6、条件判断IF/Unless 7、for循环th:each 循环状态: 使用状态,与三目元素符: (条件?值1:值2来表示: ) 8、Thymeleaf的内置对象 Thymeleaf中提供了一些内置对象,并且在这些对象中提供了一些方法,方便我们来调用。获取这些对象,需要使用 Thymeleaf也提供了全局的内置对象: session内置对象案例: dates内置对象案例:更改日期显示格式 9、默认值的显示 单独输入 th: 标签如果值为空,不显示。如果拼接,没传值会显示拼接字符串+null 1、在script使用: th:inline="javascript" 2、取值:/*[[${域对象名}]]*/ 案例获取对象集合: SpringBoot使用thymeleaf模板 标签:count framework string velocity ssi lang 计算 set ram 原文地址:https://www.cnblogs.com/64Byte/p/13254452.htmlthymeleaf介绍
使用thymeleaf模板
dependency>
groupId>org.springframework.bootgroupId>
artifactId>spring-boot-starter-thymeleafartifactId>
dependency>
###thymeleaf的默认配置
#spring.thymeleaf.prefix=classpath:/templates/ (路径前缀,存放的文件夹)
#spring.thymeleaf.suffix=.html (路径的后缀名)
#spring.thymeleaf.mode=HTML5
#spring.thymeleaf.encoding=UTF-8
#spring.thymeleaf.content-type=text/html
#关闭缓存 在开发阶段建议关闭
spring.thymeleaf.cache=false
thymeleaf的详解
//${session.user.name} 表示从session域获取user对象的name属性值,不要忘记写session
//${user.name} 表示从request域获取user对象的name属性值,一定不能写 ${request.user.name}
//例如:
span th:text="${session.user.name}">span>
div th:object="${session.user}">
p>
span th:text="*{id}">span>
p>
p>
span th:utext="*{name}">span>
p>
p>
span th:text="*{birthday}">span>
p>
div>
a href="/test/test2?id=1001&name=lisi">test2a>
a th:href="@{/test/test2(id=1002,name=‘wangwu‘)}">test2a>
h1 th:text="‘欢迎:‘+${name1}+‘,您是:‘+${role}">h1>
h1 th:text="|welcome:${name1},您是:${role}|">h1>
p th:if="${name1 != null} ">哈哈p>
p th:unless="${name1 != null} ">嘿嘿p>
table border="1" width="500">
thead>
tr>
th>编号th>
th>姓名th>
tr>
thead>
tbody>
tr th:each="user:${list}">
td th:text="${user.id}">td>
td th:text="${user.name}">td>
tr>
tbody>
table>
style type="text/css">
.green{ background-color: green; }
.red{ background-color: red; }
style>
tbody>
tr th:each="user,stat:${list}" th:class="${stat.odd}?‘green‘:‘red‘">
td th:text="${stat.index}">td>
td th:text="${user.id}">td>
td th:text="${user.name}">td>
tr>
tbody>
#
对象名
来引用
@GetMapping("test3")
public String test3(Model model,HttpSession session) throws Exception {
--打印session的id
}
div th:text="${#session.getId()}">div>
div th:text="${#request.getContextPath()}">div>
发现是同一个session
h1 th:text="|当前系统时间:${#dates.format(now,‘yyyy-MM-dd HH:mm:ss‘)}|">h1>
h1 th:text="${name1}?:无名氏">h1>
javaScript获取thymeleaf中域中的数据
文章标题:SpringBoot使用thymeleaf模板
文章链接:http://soscw.com/index.php/essay/79491.html