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

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

thymeleaf模板怎么在SpringBoot中使用-創(chuàng)新互聯

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

創(chuàng)新互聯基于成都重慶香港及美國等地區(qū)分布式IDC機房數據中心構建的電信大帶寬,聯通大帶寬,移動大帶寬,多線BGP大帶寬租用,是為眾多客戶提供專業(yè)多線服務器托管報價,主機托管價格性價比高,為金融證券行業(yè)服務器托管,ai人工智能服務器托管提供bgp線路100M獨享,G口帶寬及機柜租用的專業(yè)成都idc公司。

1.導入依賴

 
   
      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中使用

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

    另外有需要云服務器可以了解下創(chuàng)新互聯建站www.cdcxhl.com,海內外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。


    文章標題:thymeleaf模板怎么在SpringBoot中使用-創(chuàng)新互聯
    新聞來源:http://weahome.cn/article/geohi.html

    其他資訊

    在線咨詢

    微信咨詢

    電話咨詢

    028-86922220(工作日)

    18980820575(7×24)

    提交需求

    返回頂部