先来说说什么是模板引擎,我们以前接触过的jsp,freemarker都是模板引擎,模板引擎其实就是一个一个模板+一些数据然后渲染成我们想要的页面;
1、 Thymeleaf 概述
1.1、Thymeleaf是什么?
Thymeleaf是一个模板引擎,主要用于编写动态页面。
1.2、 Thymeleaf的作用
问题:动态页面技术已经有JSP,为什么还要用Thymeleaf?
主要原因包括以下几点:
- 使用模块引擎来编写动态页面,让开发人员无法在页面上编写 Java 代码,使得java代码和前端代码绝对的分离。
- SpringBoot默认整合Thymeleaf,不需要任何配置直接整合成功,打jar包发布不需要做任何配置。
- Thymeleaf相对于其他的模板引擎(如:Freemaker、velocity),有强大的工具支持。
- 相对于Jsp页面,执行效率高。
总结:所有JSP可以使用的地方,Thymeleaf都可以使用,并根据Thymeleaf的优势,可以得出结论:Thymeleaf的作用就是取代JSP。
SpringBoot推荐使用Thymeleaf,语法更简单,功能更强大!
2、 Thymeleaf的使用
2.1、引入thymeleaf;
方式一:在pom.xml中手动添加
<dependency>
<!-- 默认版本为2.1.6-->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<properties>
<!--切换thymeleaf版本-->
<thymeleaf.version>3.0.9.RELEASE</thymeleaf.version>
<!-- 布局功能的支持程序 thymeleaf3主程序 layout2以上版本 -->
<!-- thymeleaf2 layout1-->
<thymeleaf-layout-dialect.version>2.2.2</thymeleaf-layout-dialect.version>
</properties>
方式二:在创建项目的时候直接勾选
2.2、Thymeleaf使用
可以看到读取的路径都是classpath:/templetes/,我们只需要把html放在templetes下,thymeleaf就能自动渲染
1)、在Controller下创建helloController类
package com.example.springbootweb.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class helloController {
@RequestMapping("/hello")
public String hello(){
return "login";
}
}
2)、在resources/templates目录创建一个login.html
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org/">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<div >
<h1>HelloWorld!!!</h1>
</div>
</body>
</html>
3)、启动项目,执行http://localhost:8080/hello查看结果
3、Thymeleaf 语法说明
3.1、 表达式
表达式 | 说明 |
---|---|
${…} | 变量表达式 |
*{…} | 选择变量表达式 |
#{…} | 消息表达式 |
@{…} | 连接网址表达式 |
${…} | 变量表达式 |
~{…} | 片段表达式 |
[[…]] | 内联表达式,经过转义之后再输出 |
[(…)] | 内联表达式,原文直接输出 |
注意事项:Thymeleaf 表达式只能放置标签的 Thymeleaf 的自定义属性里面(如div标签中的th:text属性)。如果要放在非Thymeleaf 的自定义属性里面,那么需要使用内联表达式包起来。
内联表达式的意思是:在内嵌表达式的基础上嵌入基本表达式(变量、选择变量、消息等等)
3.2、改变当前元素里面的文本内容
Simple expressions:(表达式语法)
Variable Expressions: ${...}:获取变量值;OGNL;
1)、获取对象的属性、调用方法
2)、使用内置的基本对象:
#ctx : the context object.
#vars: the context variables.
#locale : the context locale.
#request : (only in Web Contexts) the HttpServletRequest object.
#response : (only in Web Contexts) the HttpServletResponse object.
#session : (only in Web Contexts) the HttpSession object.
#servletContext : (only in Web Contexts) the ServletContext object.
${session.foo}
3)、内置的一些工具对象:
#execInfo : information about the template being processed.
#messages : methods for obtaining externalized messages inside variables expressions, in the same way as they would be obtained using #{…} syntax.
#uris : methods for escaping parts of URLs/URIs
#conversions : methods for executing the configured conversion service (if any).
#dates : methods for java.util.Date objects: formatting, component extraction, etc.
#calendars : analogous to #dates , but for java.util.Calendar objects.
#numbers : methods for formatting numeric objects.
#strings : methods for String objects: contains, startsWith, prepending/appending, etc.
#objects : methods for objects in general.
#bools : methods for boolean evaluation.
#arrays : methods for arrays.
#lists : methods for lists.
#sets : methods for sets.
#maps : methods for maps.
#aggregates : methods for creating aggregates on arrays or collections.
#ids : methods for dealing with id attributes that might be repeated (for example, as a result of an iteration).
Selection Variable Expressions: *{...}:选择表达式:和${}在功能上是一样;
补充:配合 th:object="${session.user}:
<div th:object="${session.user}">
<!--直接获得对象的属性-->
<p>Name: <span th:text="*{firstName}">Sebastian</span>.</p>
<p>Surname: <span th:text="*{lastName}">Pepper</span>.</p>
<p>Nationality: <span th:text="*{nationality}">Saturn</span>.</p>
</div>
Message Expressions: #{...}:获取国际化内容
Link URL Expressions: @{...}:定义URL;
@{/order/process(execId=${execId},execType='FAST')}
Fragment Expressions: ~{...}:片段引用表达式
<div th:insert="~{commons :: main}">...</div>
Literals(字面量)
Text literals: 'one text' , 'Another one!' ,…
Number literals: 0 , 34 , 3.0 , 12.3 ,…
Boolean literals: true , false
Null literal: null
Literal tokens: one , sometext , main ,…
Text operations:(文本操作)
String concatenation: +
Literal substitutions: |The name is ${name}|
Arithmetic operations:(数学运算)
Binary operators: + , - , * , / , %
Minus sign (unary operator): -
Boolean operations:(布尔运算)
Binary operators: and , or
Boolean negation (unary operator): ! , not
Comparisons and equality:(比较运算)
Comparators: > , < , >= , <= ( gt , lt , ge , le )
Equality operators: == , != ( eq , ne )
Conditional operators:条件运算(三元运算符)
If-then: (if) ? (then)
If-then-else: (if) ? (then) : (else)
Default: (value) ?: (defaultvalue)
Special tokens:
No-Operation: _
实例:
1、表达式${…}、选择变量表达式*{…}、循环遍历
HelloController 类
@Controller
public class HelloController {
@Controller
public class HelloController {
@RequestMapping("/hello")
public String hello(Map<String,Object> map, HttpServletRequest request, HttpSession session){
//变量
map.put("name","张三");
map.put("sex","男");
map.put("number",new int[]{1,2,3,4});
//表达式
User u = new User("李四","男",12);
request.setAttribute("u",u);
User u2 = new User("王五","男",13);
session.setAttribute("u2",u2);
User u3 = new User("赵六","男",16);
ServletContext application = request.getServletContext();
application.setAttribute("u3",u3);
return "index";
}
}
}
变量表达式的作用是:从web作用域里面取到对应的值,作用域包括 request、session、application。
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org/" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<!-- 使用th:text属性输出 -->
<div th:text="${name}">会被替代</div>
<div th:text="${sex}">啦啦啦</div>
</br>
<!-- 变量表达式 -->
<div th:text="${u.name}"></div>
<!--选择变量表达式-->
<div th:object="${u}">
<div th:text="*{name}"></div>
<div th:text="*{sex}"></div>
<div th:text="*{age}"></div>
</div>
</br>
<!--遍历数组-->
<div th:each="n:${number}" th:text="${n}"></div>
</body>
</html>
访问结果: