日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 前端技术 > javascript >内容正文

javascript

第七篇:Spring Boot 整合_Thymeleaf 入门试炼 QuickStart

發布時間:2024/9/27 javascript 41 豆豆
生活随笔 收集整理的這篇文章主要介紹了 第七篇:Spring Boot 整合_Thymeleaf 入门试炼 QuickStart 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
  • 1.1 添加依賴
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency>
  • 1.2 創建存放視圖層的目錄
目錄位置:src/main/resources/templates templates:該目錄是安全的,一位置該目錄下的內容是不允許外接直接訪問的。

thymeleaf的基本使用:

  • 2.1 thymeleaf的特點:
  • thymeleaf是通過它特定的語法對html的標記做渲染。
  • 2.2 編寫ThymeleafController 用來跳轉頁面
@Controller public class ThymeleafController {@RequestMapping("/showThymeleaf")public String showInfo(Model model){model.addAttribute("msg","Thymeleaf 第一個案例");return "index";} }
  • 在src/main/resources/路徑下創建templates目錄,并添加index.html頁面文件
<!DOCTYPE html SYSTEM "http://www.thymeleaf.org/dtd/xhtml1-strict-thymeleaf-spring4-4.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"xmlns:th="http://www.thymeleaf.org"> <head><meta charset="UTF-8"><title>Thymeleaf入門</title> </head> <body> <span th:text="Hello"></span> <hr/> <span th:text="${msg}"></span> </body> </html>
  • 2.3 瀏覽器訪問:http://localhost:8080/showThymeleaf

本文源碼下載:

github地址:
https://github.com/gb-heima/Spring-Boot-Actual-Combat/tree/master/parent/spring-boot-chapter-7

總結

以上是生活随笔為你收集整理的第七篇:Spring Boot 整合_Thymeleaf 入门试炼 QuickStart的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。