thymeleaf 模板使用


1.导入依赖



2.配置模板,开发一般关闭模板缓存


# 解决模板校验问题spring.thymeleaf.mode=LEGACYHTML5# thymeleaf 模板引擎配置# 关闭模板缓存spring.thymeleaf.cache=false # 模板编码spring.thymeleaf.encoding=UTF-8# freemarker 模板引擎配置spring.freemarker.cache=false # 模板引擎不校验 html 闭合标签spring.thymeleaf.cache=false


3.编写模板 *.html 文件,位于 templates 路径下,controller 返回的模板名为 *

1.list 集合类型取值


2.单个对象取值,使用类名首字母小写


3.map 集合取值


4.list 集合使用


4. Controller 处理视图并加载数据到模板

1.集合类型数据封装


2.单一对象数据封装


3.map 集合数据封装


4. list 集合封装


参考

你可能感兴趣的:(thymeleaf 模板使用)