真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

thymeleaf模板怎么在SpringBoot中使用

今天就跟大家聊聊有關(guān)thymeleaf模板怎么在SpringBoot中使用,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

鄂倫春網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián),鄂倫春網(wǎng)站設(shè)計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為鄂倫春1000多家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)網(wǎng)站建設(shè)要多少錢,請找那個售后服務(wù)好的鄂倫春做網(wǎng)站的公司定做!

1.導(dǎo)入依賴

 
   
      org.springframework.boot 
      spring-boot-starter-thymeleaf 
  

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

###配置thymeleaf
spring:
 thymeleaf:
  cache: false

3.創(chuàng)建實體類

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文件夾下創(chuàng)建templates文件夾

并創(chuàng)建一個index.html以備后續(xù)使用

thymeleaf模板怎么在SpringBoot中使用

5.創(chuàng)建一個ThyController類

@Controller
@RequestMapping("/thyController")
public class ThyController {
  @RequestMapping("/thymeleaf")
  public String thymeleaf(Model model){
    List 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頁面




  
  ss



  
  • 7. 瀏覽器測試

    thymeleaf模板怎么在SpringBoot中使用

    看完上述內(nèi)容,你們對thymeleaf模板怎么在SpringBoot中使用有進一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。


    網(wǎng)站欄目:thymeleaf模板怎么在SpringBoot中使用
    文章源于:http://weahome.cn/article/gsoidp.html

    其他資訊

    在線咨詢

    微信咨詢

    電話咨詢

    028-86922220(工作日)

    18980820575(7×24)

    提交需求

    返回頂部