spring boot 項目中使用thymeleaf模板的案例分析
準(zhǔn)備MySql數(shù)據(jù)庫,表Prereg,IDEA數(shù)據(jù)庫中的表如下所示:

IDEA目錄結(jié)構(gòu)如下:

添加thymeleaf依賴:
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-thymeleaf</artifactId></dependency>
開始添加代碼:在controller包添加類“PreregController”
package com.example.demo.controller;import com.example.demo.mapper.PreregMapper;import com.example.demo.pojo.Prereg;import org.springframework.stereotype.Controller;import org.springframework.ui.Model;import org.springframework.web.bind.annotation.RequestMapping;import javax.annotation.Resource;import java.util.List;@Controllerpublic class PreregController {@ResourcePreregMapper preregMapper;@RequestMapping('/listPrereg')public String listPrereg(Model model){List<Prereg> preregs=preregMapper.findAll();model.addAttribute('preregs',preregs);return 'listPrereg';}}
在Mapper包下添加映射interface:“PreregMapper”
package com.example.demo.mapper;import com.example.demo.pojo.Prereg;import org.apache.ibatis.annotations.Mapper;import org.apache.ibatis.annotations.Select;import org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration;import java.util.List;@Mapperpublic interface PreregMapper {@Select('SELECT * FROM Prereg')List<Prereg> findAll();}
在pojo包下添加類Prereg:
package com.example.demo.pojo;import java.util.Date;public class Prereg {private String StuId;private String StuName;private String Trans;private int IsCompany;private int PeopleCount;private Date ArrTime;public String getStuId() {return StuId;}public void setStuId(String stuId) {StuId = stuId;}public String getStuName() {return StuName;}public void setStuName(String stuName) {StuName = stuName;}public String getTrans() {return Trans;}public void setTrans(String trans) {Trans = trans;}public int getIsCompany() {return IsCompany;}public void setIsCompany(int isCompany) {IsCompany = isCompany;}public int getPeopleCount() {return PeopleCount;}public void setPeopleCount(int peopleCount) {PeopleCount = peopleCount;}public Date getArrTime() {return ArrTime;}public void setArrTime(Date arrTime) {ArrTime = arrTime;}@Overridepublic String toString() {return 'Prereg{' +'StuId=’' + StuId + ’’’ +', StuName=’' + StuName + ’’’ +', Trans=’' + Trans + ’’’ +', IsCompany=' + IsCompany +', PeopleCount=' + PeopleCount +', ArrTime=' + ArrTime +’}’;}}
注:小技巧:定義好變量后,Alt+insert彈出“Generate”,選擇“Getter and Setter”,再選擇toString()即可完成。最后是寫HTML頁面:
<!DOCTYPE html><html lang='en' xmlns:th='http://www.thymeleaf.org'><head><meta charset='UTF-8'><title>springboot-thymeleaf demo</title></head><body><table border='1' width='1000'><thead><tr><td>學(xué)生學(xué)號</td><td>學(xué)生姓名</td><td>到達時間</td><td>家人陪伴</td><td>陪伴數(shù)量</td><td>交通工具</td></tr></thead><tr th:each='item: ${preregs}'><td th:text='${item.stuId}'></td><td th:text='${item.stuName}'></td><td th:text='${item.arrTime}'></td><td th:text='${item.isCompany}'></td><td th:text='${item.peopleCount}'></td><td th:text='${item.trans}'></td></tr></table></body></html>
效果圖如下:

到此這篇關(guān)于spring boot 項目中使用thymeleaf模板的案例分析的文章就介紹到這了,更多相關(guān)spring boot 使用thymeleaf模板內(nèi)容請搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!
相關(guān)文章:
1. 理解PHP5中static和const關(guān)鍵字2. IntelliJ IDEA安裝插件的方法步驟3. php模擬實現(xiàn)斗地主發(fā)牌4. .Net Core使用Coravel實現(xiàn)任務(wù)調(diào)度的完整步驟5. Vue封裝一個TodoList的案例與瀏覽器本地緩存的應(yīng)用實現(xiàn)6. jQuery 實現(xiàn)DOM元素拖拽交換位置的實例代碼7. Vuex localStorage的具體使用8. vue 使用localstorage實現(xiàn)面包屑的操作9. spring acegi security 1.0.0 發(fā)布10. MyBatis中的JdbcType映射使用詳解

網(wǎng)公網(wǎng)安備