SpringBoot-狂神(7. Thymeleaf模板引擎)学习笔记

上一篇:6. Web开发静态资源处理

下一篇:8. MVC自动配置原理

1. 模板引擎

在 Spring 及之前,更加倾向于使用 jsp 页面。
但是在 SpringBoot 中,推荐使用 HTML 页面。
SpringBoot这个项目首先是以jar的方式,不是war,第二,我们用的还是嵌入式的Tomcat
但是HTML页面不能写JAVA代码,那么怎么与后端交互呢?

SpringBoot推荐你可以来使用模板引擎:
其实jsp就是一个模板引擎,还有用的比较多的freemarker等
SpringBoot给我们推荐的Thymeleaf

模板引擎的思想都是一样的,如下图:
在这里插入图片描述
模板引擎的作用就是我们来写一个页面模板,比如有些值呢,是动态的,我们写一些表达式。而这些值,从哪来呢,就是我们在后台封装一些数据。然后把这个模板和这个数据交给我们模板引擎,模板引擎按照我们这个数据帮你把这表达式解析、填充到我们指定的位置,然后把这个数据最终生成一个我们想要的内容给我们写出去,这就是我们这个模板引擎,不管是jsp还是其他模板引擎,都是这个思想。只不过呢,就是说不同模板引擎之间,他们可能这个语法有点不一样

2. 引入Thymeleaf

Thymeleaf 的三个网站:

  1. Thymeleaf 官网:https://www.thymeleaf.org/
  2. Thymeleaf 在Github 的主页:https://github.com/thymeleaf/thymeleaf
  3. Spring官方文档:找到我们对应的版本

找到对应的pom依赖

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

引入后,Maven会自动下载jar包

3. Thymeleaf分析

首先得按照SpringBoot的自动配置原理看一下我们这个Thymeleaf的自动配置规则,在按照那个规则,我们进行使用

找一下Thymeleaf的自动配置类:ThymeleafProperties

@ConfigurationProperties(
    prefix = "spring.thymeleaf"
)
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;
}

可以在其中看到默认的前缀和后缀!

我们只需要把我们的html页面放在类路径下的templates下,thymeleaf就可以帮我们自动渲染了。

使用thymeleaf什么都不需要配置,只需要将他放在指定的文件夹下即可

4. Thymeleaf 简单使用

要学习语法,还是参考官网文档最为准确,我们找到对应的版本看一下

Thymeleaf 官网:https://www.thymeleaf.org/

简单的练习 :需要查出一些数据,在页面中展示

  1. 编写一个TestController

    @RequestMapping("/t1")
    public String test1(Model model){
        //存入数据
        model.addAttribute("msg","Hello,Thymeleaf");
        return "test";
    }
    
  2. 我们要使用thymeleaf,需要在html文件中导入命名空间的约束,方便提示

    <html lang="en" xmlns:th="http://www.thymeleaf.org">
    
  3. 编写下前端页面

    <!DOCTYPE html>
    <html lang="en" xmlns:th="http://www.thymeleaf.org">
    <head>
        <meta charset="UTF-8">
        <title>thymeleaf</title>
    </head>
    <body>
    <h1>测试页面</h1>
    
    <!--th:text就是将div中的内容设置为它指定的值,和之前学习的Vue一样-->
    <div th:text="${msg}"></div>
    </body>
    </html>
    
  4. 启动测试
    在这里插入图片描述

5. Thymeleaf 语法

1. 语法概述

  1. 可以使用任意的 th:attr 来替换Html中原生属性的值
    在这里插入图片描述

  2. 可使用的表达式

    Simple expressions:(表达式语法)
    Variable Expressions: ${…}:获取变量值;OGNL;
    1. 获取对象的属性、调用方法
    2. 使用内置的基本对象:#18
    #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.
    3. 内置的一些工具对象:
          #execInfo : information about the template being processed.
          #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.

    Selection Variable Expressions: *{…}:选择表达式:和${}在功能上是一样; Message
    Expressions: #{…}:获取国际化内容 Link URL Expressions: @{…}:定义URL;
    Fragment Expressions: ~{…}:片段引用表达式

    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: _

2. 测试

  1. 编写一个Controller,放一些数据

    @RequestMapping("/t2")
    public String test2(Map<String,Object> map){
        //存入数据
        map.put("msg","<h1>Hello</h1>");
        map.put("users", Arrays.asList("AAA","BBB"));
        //classpath:/templates/test.html
        return "test";
    }
    
  2. 测试页面取出数据

    <!DOCTYPE html>
    <html lang="en" xmlns:th="http://www.thymeleaf.org">
    <head>
        <meta charset="UTF-8">
        <title>thymeleaf</title>
    </head>
    <body>
    <h1>测试页面</h1>
    
    <div th:text="${msg}"></div>
    <!--不转义-->
    <div th:utext="${msg}"></div>
    
    <!--遍历数据-->
    <!--th:each每次遍历都会生成当前这个标签:官网#9-->
    <h4 th:each="user :${users}" th:text="${user}"></h4>
    
    <h4>
        <!--行内写法:官网#12-->
        <span th:each="user:${users}">[[${user}]]</span>
    </h4>
    
    </body>
    </html>
    
  3. 启动项目测试
    在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

yuan_404

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

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

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

打赏作者

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

抵扣说明:

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

余额充值