模板引擎-Thymeleaf


一、thymeleaf簡介

Thymeleaf is a modern server-side Java template engine for both web and standalone environments, capable of processing HTML, XML, JavaScript, CSS and even plain text.html

現代化、服務端Java模板引擎web

二、基本語法

一、表達式

表達式名字 語法 用途
變量取值 ${…} 獲取請求域、session域、對象等值
選擇變量 *{…} 獲取上下文對象值
消息 #{…} 獲取國際化等值
連接 @{…} 生成連接
片斷表達式 ~{…} jsp:include 做用,引入公共頁面片斷

二、字面量

文本值: ‘one text’ , ‘Another one!’ **,…**數字: 0 , 34 , 3.0 , 12.3 **,…**布爾值: true , falsespring

空值: nullsession

變量: one,two,… 變量不能有空格jsp

三、文本操做

字符串拼接: +ide

變量替換: |The name is ${name}|spring-boot

四、數學運算

運算符: + , - , * , / , %ui

五、布爾運算

運算符: and , orspa

一元運算: ! , notcode

六、比較運算

比較: > , < , >= , <= ( gt , lt , ge , le **)**等式: == , != ( eq , ne )

七、條件運算

If-then: (if) ? (then)

If-then-else: (if) ? (then) : (else)

Default: (value) ?: (defaultvalue)

八、特殊操做

無操做: _

三、設置屬性值-th:attr

設置單個值

<form action="subscribe.html" th:attr="action=@{/subscribe}">
  <fieldset>
    <input type="text" name="email" />
    <input type="submit" value="Subscribe!" th:attr="value=#{subscribe.submit}"/>
  </fieldset>
</form>

設置多個值

<img src="../../images/gtvglogo.png"  th:attr="src=@{/images/gtvglogo.png},title=#{logo},alt=#{logo}" />

以上兩個的代替寫法 th:xxxx

<input type="submit" value="Subscribe!" th:value="#{subscribe.submit}"/>
<form action="subscribe.html" th:action="@{/subscribe}">

全部h5兼容的標籤寫法

四、迭代

<tr th:each="prod : ${prods}">
        <td th:text="${prod.name}">Onions</td>
        <td th:text="${prod.price}">2.41</td>
        <td th:text="${prod.inStock}? #{true} : #{false}">yes</td>
</tr>
<tr th:each="prod,iterStat : ${prods}" th:class="${iterStat.odd}? 'odd'">
  <td th:text="${prod.name}">Onions</td>
  <td th:text="${prod.price}">2.41</td>
  <td th:text="${prod.inStock}? #{true} : #{false}">yes</td>
</tr>

五、條件運算

<a href="comments.html"
th:href="@{/product/comments(prodId=${prod.id})}"
th:if="${not #lists.isEmpty(prod.comments)}">view</a>
<div th:switch="${user.role}">
  <p th:case="'admin'">User is an administrator</p>
  <p th:case="#{roles.manager}">User is a manager</p>
  <p th:case="*">User is some other thing</p>
</div>

六、屬性優先級

image.png

三、thymeleaf使用

一、引入Starter

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

二、自動配置好了thymeleaf

@Configuration(proxyBeanMethods = false)
@EnableConfigurationProperties(ThymeleafProperties.class)
@ConditionalOnClass({ TemplateMode.class, SpringTemplateEngine.class })
@AutoConfigureAfter({ WebMvcAutoConfiguration.class, WebFluxAutoConfiguration.class })
public class ThymeleafAutoConfiguration { }

自動配好的策略

  • 一、全部thymeleaf的配置值都在 ThymeleafProperties
  • 二、配置好了 SpringTemplateEngine
  • 三、配好了 ThymeleafViewResolver
  • 四、咱們只須要直接開發頁面
public static final String DEFAULT_PREFIX = "classpath:/templates/";

    public static final String DEFAULT_SUFFIX = ".html";  //xxx.html

三、頁面開發

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<h1 th:text="${msg}">哈哈</h1>
<h2>
    <a href="www.atguigu.com" th:href="${link}">去百度</a>  <br/>
    <a href="www.atguigu.com" th:href="@{link}">去百度2</a>
</h2>
</body>
</html>
相關文章
相關標籤/搜索