SpringBoot 2.2.5 整合Thymeleaf模版引擎,并实现简单的页面操作

完整代码地址在结尾!!

第一步,在pom.xml加入依赖,如下

<!-- web依赖 -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- thymeleaf依赖 -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<!-- 简化w3c标准开发依赖 -->
<dependency>
    <groupId>net.sourceforge.nekohtml</groupId>
    <artifactId>nekohtml</artifactId>
</dependency>

第二步,配置application.yml,如下

spring:
  thymeleaf:
    cache: false # 关闭thymeleaf缓存,开发时使用,否则没有实时画面
    check-template-location: true # 检查模板是否存在,然后再呈现
    enabled: true  # 启用MVC Thymeleaf视图分辨率
    encoding: utf-8
    mode: HTML # 指定模板编码
    prefix: classpath:/templates # 设置thymeleaf路径默认为src/main/resources/templates
    servlet:
      content-type: text/html # Content-Type值
    suffix: .html # 构建URL时附加查看名称的后缀.

server:
  port: 8082
  servlet:
    context-path: /templates # 在构建URL时的前缀

第三步,在src/main/resources目录下创建templates文件夹,用于放html文件,并创建index.html

<!DOCTYPE html SYSTEM "http://www.thymeleaf.org/dtd/xhtml1-strict-thymeleaf-spring4-4.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<div>
    <span>访问 Model:</span><span th:text="${model}"></span>
</div>
<div>
    <span>访问列表</span>
    <table>
        <thead>
        <tr>
            <th>id:</th>
            <th>姓名:</th>
            <th>年龄:</th>
            <th>性别:</th>
        </tr>
        </thead>
        <tbody>
        <tr th:each="t : ${list}">
            <td th:text="${t.id}"></td>
            <td th:text="${t.name}"></td>
            <td th:text="${t.age}"></td>
            <td th:text="${t.sex}"></td>
        </tr>
        </tbody>
    </table>
</div>
</body>
</html>

常用th属性:

th:text:文本替换;
th:utext:支持html的文本替换。
th:value:属性赋值  
th:each:遍历循环元素
th:if:判断条件,类似的还有th:unless,th:switch,th:case
th:insert:代码块引入,类似的还有th:replace,th:include,常用于公共代码块提取的场景
th:fragment:定义代码块,方便被th:insert引用
th:object:声明变量,一般和*{}一起配合使用,达到偷懒的效果。
th:attr:设置标签属性,多个属性可以用逗号分隔

第四步,分别创建类Test,iTestService,TestServiceImpl,TestController用于测试

Test

import lombok.Data;

import java.io.Serializable;

/**
 * @Description:
 * @Author: luoyu
 * @Date: 2020/4/12 下午1:24
 * @Version: 1.0.0
 */
@Data
public class Test implements Serializable {

    private String id;
    private String name;
    private int age;
    private String sex;

}

iTestService

import com.luoyu.thymeleaf.entity.Test;

import java.util.List;

/**
 * @Description:
 * @Author: luoyu
 * @Date: 2020/4/12 下午1:23
 * @Version: 1.0.0
 */
public interface iTestService {

    /**
     * @Author: luoyu
     * @Description: 随机返回一组数据用于展示
     * @Date: 2020/5/10 4:43 下午
     * @Return: java.util.List<com.jinhaoxun.thymeleaf.pojo.Test>
     * @Throws:
     */
    List<Test> getTest();

}

TestServiceImpl

import com.luoyu.thymeleaf.entity.Test;
import com.luoyu.thymeleaf.service.iTestService;
import org.springframework.stereotype.Service;

import java.util.ArrayList;
import java.util.List;
import java.util.Random;

/**
 * @Description:
 * @Author: luoyu
 * @Date: 2020/4/12 下午1:27
 * @Version: 1.0.0
 */
@Service
public class TestServiceImpl implements iTestService {

    /**
     * @Author: luoyu
     * @Description: 随机返回一组数据用于展示
     * @Date: 2020/5/10 4:43 下午
     * @Return: java.util.List<com.jinhaoxun.thymeleaf.pojo.Test>
     * @Throws:
     */
    @Override
    public List<Test> getTest() {
        List<Test> testList = new ArrayList<>();
        Random random = new Random();
        int count = random.nextInt(30);
        for (int i = 0; i < count; i++) {
            Test test = new Test();
            if(i%3 == 0){
                test.setId("123");
                test.setName("李白");
                test.setAge(18);
                test.setSex("男");
            }else if(i%3 == 1){
                test.setId("456");
                test.setName("韩信");
                test.setAge(20);
                test.setSex("男");
            }else {
                test.setId("789");
                test.setName("露娜");
                test.setAge(16);
                test.setSex("女");
            }
            testList.add(test);
        }
        return testList;
    }

}

TestController

import com.luoyu.thymeleaf.entity.Test;
import com.luoyu.thymeleaf.service.iTestService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.servlet.ModelAndView;

import java.util.List;

/**
 * @Description:
 * @Author: luoyu
 * @Date: 2020/4/11 下午8:17
 * @Version: 1.0.0
 */
@RestController
@RequestMapping("/test")
public class TestController {

    @Autowired
    private iTestService iTestService;

    @GetMapping("/getlist")
    public ModelAndView index(){
        ModelAndView mv = new ModelAndView();
        List<Test> testList = iTestService.getTest();
        mv.addObject("list", testList);
        mv.addObject("model", "测试一下模块名");
        mv.setViewName("/index.html");
        return mv;
    }

}

第四步,启动项目,访问:http://localhost:8082/templates/test/getlist,端口号根据配置文件application.yml里面的端口号进行修改,刷新可以随机请求到不同的数据,文中只列举了简单的交互方式,还有各种复杂好玩的方式,有需要的可以自行百度了解

完整代码地址:https://github.com/Jinhx128/springboot-demo

注:此工程包含多个module,本文所用代码均在thymeleaf-demo模块下

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,236评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,867评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,715评论 0 340
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,899评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,895评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,733评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,085评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,722评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,025评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,696评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,816评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,447评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,057评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,009评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,254评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,204评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,561评论 2 343