此篇记录学习Themleaf测试的相关用例:
study01
- Thymeleaf 的HelloWorld级别的例子
- 简单介绍Thymeleaf的工作流程
study02
- 使用
spring.thymeleaf.cache=false
的方式让静态资源热部署; - 使用
devtools
插件让静态资源和java
文件热部署。
study03
Thymeleaf 之 初步使用
- 非表单数据显示(字符串拼接)
- 表单数据显示
- 三目运算
- if判断
- switch选择及case应用
- each循环(循环中状态对象的各属性)
study04
Thymeleaf 之 页面模板应用
study05
Thymeleaf 之 内置对象、定义变量、URL参数及标签自定义属性
为了模板更加易用,Thymeleaf还提供了一系列Utility对象(内置于Context中),可以通过#直接访问:
- dates : java.util.Date的功能方法类。
- calendars : 类似#dates,面向java.util.Calendar
- numbers : 格式化数字的功能方法类
- strings : 字符串对象的功能类,contains,startWiths,prepending/appending等等。
- objects: 对objects的功能类操作。
- bools: 对布尔值求值的功能方法。
- arrays:对数组的功能类方法。
- lists: 对lists功能类方法
- sets
- maps
Github地址:https://github.com/xiaowu135/ThemleafStudy
时间: 2024-10-05 11:19:19