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

溫馨提示×

溫馨提示×

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

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

SpringBoot如何使用thymeleaf模板

發布時間:2021-09-23 14:36:13 來源:億速云 閱讀:140 作者:小新 欄目:編程語言

這篇文章主要為大家展示了“SpringBoot如何使用thymeleaf模板”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“SpringBoot如何使用thymeleaf模板”這篇文章吧。

1.導入依賴

<!-- 添加thymeleaf模版的依賴 -->   <dependency>      <groupId>org.springframework.boot</groupId>       <artifactId>spring-boot-starter-thymeleaf</artifactId>   </dependency>

2.application.yml文件中新增thymeleaf配置

###配置thymeleafspring: thymeleaf:  cache: false

3.創建實體類

public class Student {  private Integer stu_id;  private String stu_name;  public Integer getStu_id() {    return stu_id;  }  public void setStu_id(Integer stu_id) {    this.stu_id = stu_id;  }  public Student(Integer stu_id, String stu_name) {    this.stu_id = stu_id;    this.stu_name = stu_name;  }  public String getStu_name() {    return stu_name;  }  public void setStu_name(String stu_name) {    this.stu_name = stu_name;  }}

4.在src/main/resource文件夾下創建templates文件夾

并創建一個index.html以備后續使用

5.創建一個ThyController類

@Controller@RequestMapping("/thyController")public class ThyController {  @RequestMapping("/thymeleaf")  public String thymeleaf(Model model){    List<Student> list=new ArrayList<>();    Student stu1=new Student(1,"張三");    Student stu2=new Student(2,"李四");    Student stu3=new Student(3,"王五");    list.add(stu1);    list.add(stu2);    list.add(stu3);    model.addAttribute("stuList",list);    return "index";  }}

6.hello.html頁面

<!DOCTYPE html><html lang="en" xmlns:th="http://www.w3.org/1999/xhtml"><head>  <meta charset="UTF-8"/>  <title>ss</title></head><body><ul th:each="stu:${stuList}">  <li><span th:text="${stu.stu_id}"></span><span th:text="${stu.stu_name}"></span></li></ul></body></html>

7. 瀏覽器測試

以上是“SpringBoot如何使用thymeleaf模板”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

县级市| 青龙| 全州县| 贞丰县| 阜新| 元谋县| 新宁县| 台安县| 咸阳市| 成武县| 娱乐| 临湘市| 宜川县| 枞阳县| 师宗县| 唐山市| 新河县| 扎兰屯市| 泗水县| 苍梧县| 望城县| 长沙市| 湖南省| 衡阳县| 柘荣县| 北京市| 横山县| 罗定市| 克山县| 苗栗县| 永兴县| 云霄县| 平凉市| 周口市| 台湾省| 兴安县| 都兰县| 嵊州市| 简阳市| 民和| 修文县|