spring boot 项目中使用thymeleaf模板的案例分析
作者:kic-kuangwl
这篇文章主要介绍了spring boot 项目中使用thymeleaf模板的案例分析,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
准备
MySql数据库,表Prereg,IDEA
数据库中的表如下所示:
IDEA目录结构如下:
添加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; @Controller public class PreregController { @Resource PreregMapper 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; @Mapper public 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; } @Override public 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>学生学号</td> <td>学生姓名</td> <td>到达时间</td> <td>家人陪伴</td> <td>陪伴数量</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>
效果图如下:
到此这篇关于spring boot 项目中使用thymeleaf模板的案例分析的文章就介绍到这了,更多相关spring boot 使用thymeleaf模板内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
您可能感兴趣的文章:
- Spring Boot thymeleaf模板引擎的使用详解
- SpringBoot使用Thymeleaf模板引擎访问静态html的过程
- springBoot加入thymeleaf模板的方式
- Spring boot项目使用thymeleaf模板过程详解
- SpringBoot使用thymeleaf模板过程解析
- Spring Boot集成Thymeleaf模板引擎的完整步骤
- SpringBoot中的Thymeleaf模板
- Spring Boot 与 kotlin 使用Thymeleaf模板引擎渲染web视图的方法
- Spring boot搭建web应用集成thymeleaf模板实现登陆
- 详解spring Boot 集成 Thymeleaf模板引擎实例
- springboot用thymeleaf模板的paginate分页完整代码
- springboot中thymeleaf模板使用详解
- Springboot Thymeleaf模板文件调用Java类静态方法
- Java基础总结之Thymeleaf详解