【JavaWeb】Thymeleaf视图模板技术
1.Thymeleaf是什么
是类似于JSP、Freemarker、Velocity的服务端模板技术,将动态数据渲染到页面上
2.为什么需要Thymeleaf
客户端发送请求,index页面是静态的,查询数据库中的数据是动态,Thymeleaf可以在静态页面上渲染后台查询的数据。
3.视图
请求URL为:http://localhost:8080/pro09/index
逻辑视图:index
物理视图:view-prefix + 逻辑视图名称 + view-suffix
所以访问的真实视图是:/index.html
配置文件中配置前缀和后缀
<!-- 在上下文参数中配置视图前缀和视图后缀 --> <context-param> <param-name>view-prefix</param-name> <param-value>/</param-value> </context-param> <context-param> <param-name>view-suffix</param-name> <param-value>.html</param-value> </context-param>
4.使用Thymeleaf
(1)添加依赖
(2)头文件引入:xmlns:th="http://www.thymeleaf.org"
(3)使用th标识获取session作用域中的数据
<html xmlns:th="http://www.thymeleaf.org"> <head> <meta charset="utf-8"> <link rel="stylesheet" href="css/index.css"> </head> <body> <div id="div_container"> <div id="div_fruit_list"> <p class="center f30">欢迎来到水果商城后台管理系统</p> <table id="tbl_fruit"> <tr> <th class="w20">名称</th> <th class="w20">单价</th> <th class="w20">库存</th> <th>操作</th> </tr> <tr th:if="${#lists.isEmpty(session.fruitList)}"> <td colspan="4">数据为空!</td> </tr> <tr th:unless="${#lists.isEmpty(session.fruitList)}" th:each="fruit:${session.fruitList}"> <td th:text="${fruit.fname}">苹果</td> <td th:text="${fruit.price}">5</td> <td th:text="${fruit.fcount}">20</td> <td><img src="imgs/del.jpg" class="delImg"/></td> </tr> </table> <hr/> </div> </div> </body> </html>
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 分享4款.NET开源、免费、实用的商城系统
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
· 上周热点回顾(2.24-3.2)