91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

SpringBoot+Thymeleaf基于HTML5現代模板引擎怎么用

發布時間:2022-04-24 16:00:45 來源:億速云 閱讀:164 作者:iii 欄目:大數據

本篇內容主要講解“SpringBoot+Thymeleaf基于HTML5現代模板引擎怎么用”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“SpringBoot+Thymeleaf基于HTML5現代模板引擎怎么用”吧!

開始使用

1.引入依賴

SpringBoot默認提供了Thymeleaf的Starter,只需簡單引入依賴即可。

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

目前默認版本是2.1,如果想升級版本到3.0,可以這樣修改。

  <properties>
    <thymeleaf.version>3.0.7.RELEASE</thymeleaf.version>
    <thymeleaf-layout-dialect.version>2.0.0</thymeleaf-layout-dialect.version>
  </properties>

為了方便開發,項目案例采用了熱部署工具dev-tools ,這樣我們在修改頁面之后,IDEA會自動加載,從而達到實現熱更新的效果。

   <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-devtools</artifactId>
      <scope>runtime</scope>
    </dependency>

注:由于IDEA默認關閉了熱部署,需要做一些設置才能使其生效。解決方法:首先按住Ctrl+Shift+Alt+/ 然后進入 Registry ,然后勾選compiler.automake.allow.when.app.running 即可。另外,Build->Compiler 也要勾選上Build Project automatically .

2. 添加相關配置

Thymeleaf默認開啟了頁面緩存,在開發的時候,應該關閉緩存。此外,通常我們還會指定頁面的存放路徑。(默認是classpath:/templates/)

application.yml 配置如下:
spring:
 thymeleaf:
  cache: false #關閉緩存
  prefix: classpath:/views/ #添加路徑前綴

3.編寫HTML

編寫Thymeleaf和書寫HTML5頁面沒有什么不同,最大的轉變就是使用拓展屬性(th:xx)去跟服務端進行數據交互,保留原始頁面風格,也是Thymeleaf的推崇的風格。例如下面這個簡單的案例,啟動項目,我們發現頁面跳轉的是簡書的連接,這一點也驗證了Thymeleaf覆蓋原生頁面數據的極佳能力。

頁面代碼:

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
  <title>Thymeleaf</title>
</head>
<body>
  <h3>歡迎使用Thymeleaf!!</h3>
  <a href="http://www.baidu.com" rel="external nofollow" th:href="${info}" rel="external nofollow" >戳我有驚喜</a>
</body>
</html>

后端代碼:

@Controller
public class UserController {

  @GetMapping("/")
  public String index(Model model) {
    model.addAttribute("info", "user/list");
    return "index";
  }

  @GetMapping("/user")
  public String hehe(Model model) {
    model.addAttribute("user", new User(UUID.randomUUID().toString(), "yizhiwazi", "20170928"));
    return "user";
  }

  @GetMapping("/user/list")
  public String userlist(Model model) {
    List<User> userList = new ArrayList<>();
    userList.add(new User(UUID.randomUUID().toString(), "yizhiwazi", "20170928"));
    userList.add(new User(UUID.randomUUID().toString(), "kumamon", "123456"));
    userList.add(new User(UUID.randomUUID().toString(), "admin", "admin"));
    model.addAttribute("userList", userList);
    return "userList";
  }

}

現在我們嘗試回填一個表單,展示單個用戶信息。

<!-- 使用th:object 搭配*{} 可以省略對象名 -->
<form action="/" th:object="${user}" >
  <input type="hidden" name="userId" th:value="*{userId}" />
  <input type="text" name="username" th:value="*{username}" />
  <input type="text" name="password" th:value="*{password}" />
</form>

接下來,我們進入一個更復雜的案例,例如展示一個用戶列表信息,不需要編寫新的標簽,就可以完成對批量用戶的遍歷。

<h3>用戶列表</h3>
<!--說明: th:each="obj,stat:${objects}" 分別代表單個實例,狀態(可省略),待遍歷對象-->
<div th:each="user:${userList}">
  <input type="hidden" name="userId" th:value="${user.userId}"/>
  用戶姓名:<input type="text" name="password" th:value="${user.username}"/>
  登錄密碼:<input type="text" name="username" th:value="${user.password}"/>
</div>

到此,相信大家對“SpringBoot+Thymeleaf基于HTML5現代模板引擎怎么用”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

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

AI

秦安县| 玛多县| 兰坪| 五指山市| 霸州市| 油尖旺区| 阿拉尔市| 色达县| 会理县| 兴隆县| 辛集市| 苗栗市| 焦作市| 宜兰市| 通河县| 东兴市| 灵武市| 巴林左旗| 汝州市| 保定市| 玉环县| 柳州市| 西安市| 黑龙江省| 江陵县| 河南省| 荆州市| 自贡市| 西华县| 嘉祥县| 林州市| 海城市| 棋牌| 陆良县| 青川县| 金堂县| 平阴县| 太谷县| 洛川县| 泗洪县| 惠水县|