亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用Thymeleaf對象

發布時間:2020-08-01 10:14:26 來源:億速云 閱讀:183 作者:小豬 欄目:編程語言

這篇文章主要為大家展示了如何使用Thymeleaf對象,內容簡而易懂,希望大家可以學習一下,學習完之后肯定會有收獲的,下面讓小編帶大家一起來看看吧。

Thymeleaf中有許多內置對象,可以在模板中實現各種功能。
下面有幾個基本對象。
Web對象常用有:request、session、servletContext。
Thymeleaf提供了幾個內置變量param、session、application,分別可以訪問請求參數、session屬性、application屬性。
其中request的所有屬性可以直接使用 ${屬性名} 訪問。
備注:內置對象與內置變量是兩個概念,內置對象使用“${#對象}”形式,內置變量則不需要“#”。

開發環境:IntelliJ IDEA 2019.2.2
Spring Boot版本:2.1.8

新建一個名稱為demo的Spring Boot項目。

1、pom.xml加入Thymeleaf依賴:

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

2、src/main/resources/templates/test1.html

<div th:text="${param.name1}"></div>

<div th:text="${#request.getAttribute('name2')}"></div>
<div th:text="${#session.getAttribute('name3')}"></div>
<div th:text="${#servletContext.getAttribute('name4')}"></div>
上面也可以換成下面方式:
<div th:text="${name2}"></div>
<div th:text="${session.name3}"></div>
<div th:text="${application.name4}"></div>

3、src/main/java/com/example/demo/Test1Controller.java

package com.example.demo;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import javax.servlet.http.HttpServletRequest;
@Controller
public class Test1Controller {
  @RequestMapping("/test1")
  public String test1(@RequestParam String name1, HttpServletRequest request){
    request.setAttribute("name2", "b");
    request.getSession().setAttribute("name3", "c");
    request.getServletContext().setAttribute("name4","d");
    return "test1";
  }
}

瀏覽器訪問:http://localhost:8080/test1&#63;name1=a
頁面輸出:

a
b
c
d
上面也可以換成下面方式:
b
c
d

以上就是關于如何使用Thymeleaf對象的內容,如果你們有學習到知識或者技能,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

密山市| 旬邑县| 兴业县| 龙里县| 灵寿县| 饶阳县| 兴山县| 读书| 景德镇市| 庆城县| 连云港市| 福泉市| 离岛区| 互助| 琼中| 大英县| 北安市| 潍坊市| 韩城市| 横山县| 合水县| 施秉县| 眉山市| 贺州市| 潍坊市| 隆化县| 华宁县| 开平市| 兴安盟| 宣威市| 清流县| 嘉义市| 武鸣县| 沙河市| 澄迈县| 合江县| 河间市| 虎林市| 民县| 平昌县| 南投县|