thymeleaf

添加Thymeleaf依赖

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>

自动给我们默认分配了模版的前缀和后缀,我们只需要按部就班的将模版丢进去即可

public class ThymeleafProperties {
    private static final Charset DEFAULT_ENCODING;
    public static final String DEFAULT_PREFIX = "classpath:/templates/";
    public static final String DEFAULT_SUFFIX = ".html";
    private boolean checkTemplate = true;
    private boolean checkTemplateLocation = true;
    private String prefix = "classpath:/templates/";
    private String suffix = ".html";
    private String mode = "HTML";
    private Charset encoding;
    private boolean cache;

Spring Boot默认存放模板页面的路径在src/main/resources/templates

数据显示

通过Controller将数据传递到页面中

显示普通文本

创建一个Controller对象,在其中进行参数的传递

@Controller
public class ThymeleafController {

    @RequestMapping(value = "show", method = RequestMethod.GET)
    public String show(Model model){
        model.addAttribute("uid","123456789");
        model.addAttribute("name","Jerry");
        return "show";
    }
}

在SpringBoot默认的页面路径下创建show.html文件,内容如下

<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <title>SpringBoot模版渲染</title>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
</head>
<body>
    <p th:text="'用户ID:' + ${uid}"/>
    <p th:text="'用户名称:' + ${name}"/>
</body>
</html>

可以看到在p标签中有th:text属性,这个就是thymeleaf的语法,它表示显示一个普通的文本信息。

提取公共页面

<div th:fragment="sidebar"> </div>
<div th:replace="~{commons::sidebar}"> </div>
//如果要传参可以直接用(),接收判断即可

//model.addAttribute("emps",emps)
<tbody>
    <tr th:each="emp:${emps}">
        <td th:text="${emp.getId}"></td>
        <td th:text="${emp.getName}"></td>
        <td>[[${emp.getEmail}]]</td>//两种取值方法
        <td th:text="${#dates.format(emp.getBirth(),‘yyyy-MM-dd HH:mm:ss’)}"></td>//格式化
    </tr>
</tbody>

//bootstrap下拉框,model.setAttribute("departments",departments)
<div class="form-group">
    <label></label>
    <select class="form-control" name="department">
        <option th:each="dept:${departments}" th:text="${dept}"></option>
    </select>
</div>

增删改查

<tbody>
    <tr th:each="emp:${emps}">
        <td th:text="${emp.getId}"></td>
        <td th:text="${emp.getName}"></td>
        <td>[[${emp.getEmail}]]</td>
        <td th:text="${#dates.format(emp.getBirth(),‘yyyy-MM-dd HH:mm:ss’)}"></td>
        <td>
            //th:href="@{/emp/}+${emp.getId()}"   给emp传值
            <a class="btn btn-sm btn-primary" th:href="@{/emp/}+${emp.getId()}">编辑</a>
        </td>
    </tr>
</tbody>

在这里插入图片描述

https://www.jianshu.com/p/a842e5b5012e

https://www.cnblogs.com/jiangbei/p/8462294.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

德玛西亚!!

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值