Механизм шаблонов SpringBoot Thymeleaf

Spring Boot

Некоторые распространенные шаблонизаторы

JSP, Скорость, Freemarker, Thymeleaf

![img](https://gitee.com/cn_moti/blog-image01/raw/master/ ## Механизм шаблонов SpringBoot Thymeleaf/image-19.png)

Thymeleaf, рекомендованный SpringBoot, имеет более простой синтаксис и более мощные функции.

SpringBoot представляет тимелеаф

Добавьте зависимости в файл pom

        <!--引入thymeleaf模块引擎-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>

официальный сайт тимьяна

SpringBoot использует тимелеаф

Посмотреть исходный код автоконфигурации SpringBoot

@ConfigurationProperties(prefix = "spring.thymeleaf")
public class ThymeleafProperties {

 private static final Charset DEFAULT_ENCODING = Charset.forName("UTF-8");

 private static final MimeType DEFAULT_CONTENT_TYPE = MimeType.valueOf("text/html");

 public static final String DEFAULT_PREFIX = "classpath:/templates/";

 public static final String DEFAULT_SUFFIX = ".html";

Пока мы помещаем HTML-страницу в classpath:/templates/, тимелеаф может автоматически отображать

1. Импортируйте пространство имен тимелеафа: добавьте атрибут в тег HTML-файла:xmlns:th="http://www.thymeleaf.org"

<html lang="en" xmlns:th="http://www.thymeleaf.org">

2. Напишите Controller, чтобы перейти на страницу

    /**
     * @return 跳转到classpath:/templates/success.html
     */
    @RequestMapping("/success")
    public String success(Map<String,Object> map){
        map.put("who","moti");
        return "success";
    }

3. Напишите HTML-файлы

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
    <!--th:text 将div里面的文本内容设置为 -->
    <h1>欢迎你,<span th:text="${who}"></span>!</h1>
</body>
</html>

правила грамматики тимьяна

1. Приоритет метки

  • th:textИзменить текстовое содержимое текущего элемента
  • th:任意html属性заменить значение собственного свойства

![img](https://gitee.com/cn_moti/blog-image01/raw/master/ ## Шаблонизатор SpringBoot Thymeleaf/image-20.png)

2. Выражение

2.1 Простые выражения:

  • Выражения переменных: ${…} выражения переменных
  1. Получить свойства объекта, вызвать методы
  2. Используйте встроенные примитивы
  3. Используйте некоторые встроенные служебные объекты
# 内置基本对象
            #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.
# 内置的一些工具对象 
            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).
  • Выражения переменных выбора: *{…} Выражения переменных выбора: функционально такие же, как ${}

Дополнение: сотрудничатьth:object="${session.user}

<div th:object="${session.user}">
    <p>Name: <span th:text="*{userName}">Sebastian</span>.</p>
    <p>Age: <span th:text="*{age}">Pepper</span>.</p>
    <p>Sex: <span th:text="*{sex}">Saturn</span>.</p>
</div>
  • **Выражения сообщений: #{…} Выражения сообщений: **Получить интернационализированный контент
<h1 th:text="#{login.tip}">Please sign in</h1>
  • **Выражения URL-адреса ссылки: @{…} Выражения URL-адреса ссылки: **Определить URL-адрес
@{/order/process(execId=${execId},execType='FAST')}
  • Фрагментные выражения: ~{…} фрагментарные выражения
<div th:insert="~{commons :: main}">...</div>

2.2 Литералы

       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 ,…

2.3 Текстовые операции

     String concatenation: +
     Literal substitutions: |The name is ${name}|

2.4 Арифметические операции

Binary operators: + , - , * , / , %
Minus sign (unary operator): -

2.5 Булевы операции

Binary operators: and , or
Boolean negation (unary operator): ! , not

2.6 Сравнения и равенство

Comparators: > , < , >= , <= ( gt , lt , ge , le )
Equality operators: == , != ( eq , ne )

2.7 Условные операторы Условная операция (тернарный оператор)

If-then: (if) ? (then)
If-then-else: (if) ? (then) : (else)
Default: (value) ?: (defaultvalue)

2.8 Special tokens

No-Operation: _