本博文重点内容共3个方面,分别是:
<dependency>
<groupId>org.springframework.bootgroupId>
<artifactId>spring-boot-starter-thymeleafartifactId>
dependency>
server:
port: 8070
spring:
mvc:
static-path-pattern: /static/**
thymeleaf:
#去除thymeleaf的html严格校验
mode: LEGACYHTML5
#设定thymeleaf文件路径,默认为src/main/resources/templates
prefix: classpath:/templates/
#是否开启模板缓存,默认true,建议在开发时关闭缓存,不然没法看到实时页面,也就是修改了html后不用重启,刷新页面就能看到效果,修改完html后一定要ctrl+f9重新build一下。
cache: false
#模板编码
encoding: UTF-8
package demo.entity;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Dept {
private Integer id;
private String deptName;
private String location;
}
在resources/templates文件夹中创建thymeleaf模板文件deptList.html
注意:使用xmlns命名空间
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Hello Thymeleaftitle>
head>
<body>
<div>
<span>访问列表span>
<table>
<thead>
<tr>
<th>部门编号th>
<th>部门名称th>
<th>部门地址th>
tr>
thead>
<tbody>
<tr th:each="dept : ${depts}">
<td th:text="${dept.id}">td>
<td th:text="${dept.deptName}">td>
<td th:text="${dept.location}">td>
tr>
tbody>
table>
div>
body>
html>
package demo;
import demo.entity.Dept;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.RequestMapping;
import java.util.ArrayList;
import java.util.List;
@SpringBootApplication
@Controller
public class Demo {
public static void main(String[] args) {
SpringApplication.run(Demo.class);
}
@RequestMapping("/list")
public String gen(ModelMap modelMap){
List<Dept> depts = new ArrayList<>();
depts.add(new Dept(10, "ACCOUNTING", "NEWYORK"));
depts.add(new Dept(20, "RESEARCH", "DALLAS"));
depts.add(new Dept(30, "SALES", "CHICAGO"));
depts.add(new Dept(40, "OPERATIONS", "BOSTON"));
modelMap.addAttribute("depts", depts);
return "deptList";
}
}
浏览器请求list路径,将跳转到templates/deptList.html页面(前缀是通过application.yml配置的),效果如下图,可以看到数据已经成功渲染到了HTML页面上
接上面的案例,添加thymeleaf导出静态页面的工具类
package demo.utils;
import org.springframework.stereotype.Component;
import org.thymeleaf.TemplateEngine;
import org.thymeleaf.context.Context;
import javax.annotation.Resource;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.PrintWriter;
import java.io.UnsupportedEncodingException;
import java.util.HashMap;
import java.util.Map;
@Component
public class ThymeleafUtil {
@Resource
private TemplateEngine templateEngine;
/**
* 生成静态页面
*
* @param templateName 放在根路径templates下的的模板文件的名称
* @param dest 带路径的目标文件
* @param data 数据
* @param key 模板中的key
* @return 成功返回true,失败返回false
*/
public boolean genPage(String templateName, String dest, Object data, String key) {
// 创建上下文,
Context context = new Context();
// 把数据加入上下文
Map<String, Object> vars = new HashMap<>();
vars.put(key, data);
context.setVariables(vars);
// 创建输出流,关联到一个临时文件
File destFile = new File(dest);
// 备份原页面文件
try (PrintWriter writer = new PrintWriter(destFile, "UTF-8")) {
// 利用thymeleaf模板引擎生成 静态页面
templateEngine.process(templateName, context, writer);
return true;
} catch (FileNotFoundException | UnsupportedEncodingException e) {
e.printStackTrace();
return false;
}
}
}
package demo;
import demo.entity.Dept;
import demo.utils.ThymeleafUtil;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import java.util.ArrayList;
import java.util.List;
@SpringBootTest(classes = {Demo.class})
public class JTest {
@Autowired
private ThymeleafUtil thymeleafUtil;
/**
* 使用thymeleaf工具类生成静态文件
*/
@Test
public void testGen(){
List<Dept> depts = new ArrayList<>();
depts.add(new Dept(10, "ACCOUNTING", "NEWYORK"));
depts.add(new Dept(20, "RESEARCH", "DALLAS"));
depts.add(new Dept(30, "SALES", "CHICAGO"));
depts.add(new Dept(40, "OPERATIONS", "BOSTON"));
boolean res = thymeleafUtil.genPage("deptList", "asdf1234.html", depts, "depts");
System.out.println(res ? "ok" : "error");
}
}
运行之后可以看到项目根目录已经导出了asdf1234.html
该部分参考自:Thymeleaf 的简单语法和常用th标签
关键字 | 功能介绍 | 案例 |
---|---|---|
th:id | 替换id |
|
th:text | 文本替换 |
|
th:utext | 支持html的文本替换 |
|
th:object | 替换对象 |
|
th:value | 属性赋值 |
|
th:with | 变量赋值运算 |
|
th:style | 设置样式 | th:style="'display:' + @{(${sitrue} ? 'none' : 'inline-block')} + ''" |
th:onclick | 点击事件 | th:onclick="'getCollect()'" |
th:each | 属性赋值 | tr th:each="user,userStat:${users}"> |
th:if | 判断条件 |
|
th:unless | 和th:if判断相反 | Login |
th:href | 链接地址 | Login /> |
th:switch | 多路选择 配合th:case 使用 |
|
th:case | th:switch的一个分支 |
|
th:fragment | 布局标签,定义一个代码片段,方便其它地方引用 |
|
th:include | 布局标签,替换内容到引入的文件 | /> |
th:replace | 布局标签,替换整个标签到引入的文件 |
|
th:selected | selected选择框 选中 | th:selected="(${xxx.id} == ${configObj.dd})" |
th:src | 图片类地址引入 |
|
th:inline | 定义js脚本可以使用变量 |
|
th:action | 表单提交的地址 |
|
th:remove | 删除某个属性 | |
th:attr | 设置标签属性,多个属性可以用逗号分隔 | 比如 th:attr="src=@{/image/aa.jpg},title=#{logo}" ,此标签不太优雅,一般用的比较少。 |