在pom.xml文件中引入以下依赖
org.springframework.boot
spring-boot-starter-web
org.springframework.boot
spring-boot-starter-thymeleaf
org.springframework.boot
spring-boot-devtools
true
配置应用热部署的好处是你改了页面模板的内容,不需要重启应用,上面已经引入了热部署需要的依赖,
现在只需要把模板缓存关闭就行
spring:
thymeleaf:
#关闭模板缓存
cache: false
server:
servlet:
#配置应用的根路径
context-path: /thymeleaf
#应用的访问路径
port: 8002
@Controller
public class UserController {
@Autowired
UserRepository userRepository;
@GetMapping(value = {"/","/index"})
public ModelAndView index(HttpSession session){
User user=new User(0,"admin",0);
//往session中把当前用户信息放进去
session.setAttribute("user",user);
ModelAndView modelAndView=new ModelAndView("index");
List<User> userList=userRepository.findAll();
modelAndView.addObject(userList);
modelAndView.addObject("id",0);
HashMap map=new HashMap();
map.put("totalPage",5);
map.put("totalRecord",50);
modelAndView.addObject("page",map);
return modelAndView;
}
}
@Component
public class UserRepository {
//模拟数据库存储
private List<User> userList = new ArrayList<>();
//初始化仓储数据,实际应该重数据库中获取
{
User user;
for (int i = 1; i <= 20; i++) {
user = new User(i, RandomName.randomName(true, 3), i % 2);
userList.add(user);
}
}
public Optional<User> findById(Integer id) {
return Optional.ofNullable(userList.get(id));
}
public List<User> findAll() {
return userList;
}
}
public class User {
public User(){}
public User(Integer userId,String name,Integer gender){
this.userId=userId;
this.name=name;
this.gender=gender;
this.createTime=new Date();
}
//用户ID
private Integer userId;
//用户姓名
private String name;
//性别
private Integer gender;
//创建时间
private Date createTime;
//省略get set方法 。。。。
}
${}
可以获取各种作用域的变量属性
<input type="text" th:value="${id}">
还可以在里面做一些简单的逻辑运算,下面做了一个三目运算,如果id小于0则显示id小于0
<input type="text" th:value="${id>=0?id:'id小于0'}">
@{}
链接表达式@{}直接拿到应用路径,然后拼接静态资源路径
<script th:src="@{/js/test.js}">script>
<script src="<%=request.getContextPath()%>/js/test.js">script>
th:fragment
通过th:fragment可以定制片段
下面是定制一个公共的资源加载工具
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head th:fragment="static">
<link th:href="@{/css/global.css}" rel="stylesheet" type="text/css"/>
<script th:src="@{/js/jquery-1.12.4.min.js}">script>
head>
html>
th:replace
通关th:replace标签添加片段路径,片段名称引入
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Titletitle>
<script th:replace="common/resources::static">script>
head>
<body>
common/header.html
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<body>
<header th:fragment="header">
<div>
<h2 >SpringBoot Thymeleaf使用教程h2>
div>
<div>
<div>
欢迎访问我的博客:<a href="https://blog.csdn.net/ming19951224">https://blog.csdn.net/ming19951224a>
div>
<div >
欢迎访问我的github地址:<a href="https://github.com/Dominick-Li">https://github.com/Dominick-Lia>
div>
div>
header>
body>
html>
common/footer.html
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<body>
<footer id="footer" th:fragment="footer">
<div>
<h2 style="text-align: center">网站的通用底部模板h2>
div>
<div>
<a href="https://www.thymeleaf.org/doc/tutorials/3.0/usingthymeleaf.html">Thymeleaf官方文档a>
div>
footer>
body>
html>
在index.html引入头尾片段
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>引入网站的头尾片段title>
head>
<body>
<header th:include="common/header :: header">header>
<div id="body">
网站的主体内容
div>
<footer th:include="common/footer :: footer" >footer>
body>
html>
th:text
类似于jqeury里的text()方法,只能渲染文本
<p th:text='${session.user.name}'>p>
th:utext
类似于jqeury里的html()方法,能渲染文本和dom元素
<p th:utext="'当前登录的用户:'+${session.user.name}">p>
和jsp内置对象类似。。
标签 | 描述 |
---|---|
${#ctx} | 上下文对象,可用于获取其它内置对象。 |
${#vars} | 上下文变量。 |
${#locale} | 上下文区域设置。 |
${#request} | HttpServletRequest对象。 |
${#response} | HttpServletResponse对象。 |
${#session} | HttpSession对象。 |
${#servletContext} | ServletContext对象。 |
使用${#session} 显示登录的用户信息
<div th:if="${session.user}" th:text="'当前登录的用户:'+${session.user.name}">div>
迭代list
<tr th:each="user,iterObj : ${userList}">
<td th:text="${'数组下标:'+iterObj.index+',迭代的次数:'+iterObj.count}">td>
<td th:text="${user.name}">td>
<td th:text="${user.getGendenName()}">td>
<td th:text="${#dates.format(user.createTime,'yyyy-MM-dd HH:mm:ss')}">td>
tr>
属性 | 描述 |
---|---|
user | 当前迭代的对象 |
iterObj | 迭代的详细信息对象 |
iterObj.index | 数组下标,重0开始 |
iterObj.count | 迭代的次数,重1开始 |
迭代map
类似于java中迭代map
<li th:each="entry : ${page}" th:text="${entry.key+':'+entry.value}" >li>
条件判断一般用于是否要渲染该片段
th:if
条件为true时候则渲染元素
<div th:if="${userList}">
变量存在,则渲染
div>
th:unless
条件为false时候则渲染元素
<div th:unless="false">
条件等于false,则渲染
div>
th:inline内联标签
#script设置th:inline="javascript",然后在script脚本中通关[[${xx}]] 获取变量值
#dates.format函数
格式#dates.format(变量值,‘格式’)
github地址
要是觉得我写的对你有点帮助的话,麻烦在github上帮我点 Star
【SpringBoot框架篇】其它文章如下,后续会继续更新。