這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)碛嘘P(guān)Thymeleaf怎么在SpringBoot中使用,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
創(chuàng)新互聯(lián)建站專業(yè)為企業(yè)提供懷柔網(wǎng)站建設(shè)、懷柔做網(wǎng)站、懷柔網(wǎng)站設(shè)計(jì)、懷柔網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)與制作、懷柔企業(yè)網(wǎng)站模板建站服務(wù),十多年懷柔做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。
1.引入依賴:
org.springframework.boot spring-boot-starter-thymeleaf org.springframework.boot spring-boot-starter-web
2.application.properties
#是否開啟緩存,開發(fā)時(shí)可設(shè)置為false,默認(rèn)為true spring.thymeleaf.cache=true #是否檢查模板是否存在,默認(rèn)為true spring.thymeleaf.check-template=true #是否檢查模板位置是否存在,默認(rèn)為true spring.thymeleaf.check-template-location=true #模板文件編碼 spring.thymeleaf.encoding=UTF-8 #模板文件位置 spring.thymeleaf.prefix=classpath:/templates/ #Content-Type配置 spring.thymeleaf.servlet.content-type=text/html #模板文件后綴 spring.thymeleaf.suffix=.html
3.創(chuàng)建實(shí)體類和controller類
public class Book { private Integer id; private String name; private String author; //省略getter/setter } @Controller public class BookController { @GetMapping("/books") public ModelAndView books() { Listbooks = new ArrayList<>(); Book b1 = new Book(); b1.setId(1); b1.setAuthor("羅貫中"); b1.setName("三國演義"); Book b2 = new Book(); b2.setId(2); b2.setAuthor("曹雪芹"); b2.setName("紅樓夢"); books.add(b1); books.add(b2); ModelAndView mv = new ModelAndView(); mv.addObject("books", books); mv.setViewName("books"); return mv; } }
4.html文件:
圖書列表
圖書編號(hào) | 圖書名稱 | 圖書作者 |
5.結(jié)果:
springboot一種全新的編程規(guī)范,其設(shè)計(jì)目的是用來簡化新Spring應(yīng)用的初始搭建以及開發(fā)過程,SpringBoot也是一個(gè)服務(wù)于框架的框架,服務(wù)范圍是簡化配置文件。
上述就是小編為大家分享的Thymeleaf怎么在SpringBoot中使用了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。