您当前的位置:首页 > 电脑百科 > 程序开发 > 框架

Spring Boot + Jpa + Thymeleaf 增删改查示例

时间:2019-12-25 11:46:42  来源:  作者:

这篇文章介绍如何使用 Jpa 和 Thymeleaf 做一个增删改查的示例。

先和大家聊聊我为什么喜欢写这种脚手架的项目,在我学习一门新技术的时候,总是想快速的搭建起一个 Demo 来试试它的效果,越简单越容易上手最好。在网上找相关资料的时候总是很麻烦,有的文章写的挺不错的但是没有源代码,有的有源代码但是文章介绍又不是很清楚,所在找资料的时候稍微有点费劲。因此在我学习 Spring Boot 的时候,会写一些最简单基本的示例项目,一方面方便其它朋友以最快的方式去了解,一方面如果我的项目需要用到相关技术的时候,直接在这个示例版本去改造或者集成就可以。

现在的技术博客有很多的流派,有的喜欢分析源码,有的倾向于底层原理,我最喜欢写这种小而美的示例,方便自己方便他人。

其实以前写过 Thymeleaf 和 Jpa 的相关文章: Spring Boot (四): Thymeleaf 使用详解和Spring Boot(五):Spring Data Jpa 的使用 里面的代码示例都给的云收藏的内容Favorites-web,云收藏的内容比较多,查找起来不是很方便,因此想重新整理一篇快速上手、简单的内容,来介绍 Jpa 和 Thymeleaf 的使用,也就是本文的内容。

这篇文章就不在介绍什么是 Jpa 、 Thymeleaf ,如果还不了解这些基本的概念,可以先移步前两篇相关文章。

快速上手

配置文件

pom 包配置

pom 包里面添加 Jpa 和 Thymeleaf 的相关包引用

<dependency>    <groupId>org.springframework.boot</groupId>    <artifactId>spring-boot-starter-web</artifactId></dependency><dependency>    <groupId>org.springframework.boot</groupId>    <artifactId>spring-boot-starter-thymeleaf</artifactId></dependency><dependency>    <groupId>org.springframework.boot</groupId>    <artifactId>spring-boot-starter-data-jpa</artifactId></dependency><dependency>    <groupId>MySQL</groupId>    <artifactId>mysql-connector-JAVA</artifactId></dependency>

Application.properties中添加配置

spring.datasource.url=jdbc:mysql://127.0.0.1/test?useUnicode=true&characterEncoding=utf-8&serverTimezone=UTC&useSSL=truespring.datasource.username=rootspring.datasource.password=rootspring.datasource.driver-class-name=com.mysql.cj.jdbc.Driverspring.jpa.properties.hibernate.hbm2ddl.auto=createspring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialectspring.jpa.show-sql= truespring.thymeleaf.cache=false

其中propertiesspring.thymeleaf.cache=false是关闭 Thymeleaf 的缓存,不然在开发过程中修改页面不会立刻生效需要重启,生产可配置为 true。

在项目 resources 目录下会有两个文件夹:static目录用于放置网站的静态内容如 css、js、图片;templates 目录用于放置项目使用的页面模板。

启动类

启动类需要添加 Servlet 的支持

@SpringBootApplicationpublic class JpaThymeleafApplication extends SpringBootServletInitializer {    @Override    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {        return application.sources(JpaThymeleafApplication.class);    }    public static void main(String[] args) throws Exception {        SpringApplication.run(JpaThymeleafApplication.class, args);    }}

数据库层代码

实体类映射数据库表

@Entitypublic class User {    @Id    @GeneratedValue    private long id;    @Column(nullable = false, unique = true)    private String userName;    @Column(nullable = false)    private String password;    @Column(nullable = false)    private int age;    ...}

继承 JpaRepository 类会自动实现很多内置的方法,包括增删改查。也可以根据方法名来自动生成相关 Sql,具体可以参考: Spring Boot (五):Spring Data Jpa 的使用

public interface UserRepository extends JpaRepository<User, Long> {    User findById(long id);    Long deleteById(Long id);}

业务层处理

Service 调用 Jpa 实现相关的增删改查,实际项目中 Service 层处理具体的业务代码。

@Servicepublic class UserServiceImpl implements UserService{    @Autowired    private UserRepository userRepository;    @Override    public List<User> getUserList() {        return userRepository.findAll();    }    @Override    public User findUserById(long id) {        return userRepository.findById(id);    }    @Override    public void save(User user) {        userRepository.save(user);    }    @Override    public void edit(User user) {        userRepository.save(user);    }    @Override    public void delete(long id) {        userRepository.delete(id);    }}

Controller 负责接收请求,处理完后将页面内容返回给前端。

@Controllerpublic class UserController {    @Resource    UserService userService;    @RequestMapping("/")    public String index() {        return "redirect:/list";    }    @RequestMapping("/list")    public String list(Model model) {        List<User> users=userService.getUserList();        model.addAttribute("users", users);        return "user/list";    }    @RequestMapping("/toAdd")    public String toAdd() {        return "user/userAdd";    }    @RequestMapping("/add")    public String add(User user) {        userService.save(user);        return "redirect:/list";    }    @RequestMapping("/toEdit")    public String toEdit(Model model,Long id) {        User user=userService.findUserById(id);        model.addAttribute("user", user);        return "user/userEdit";    }    @RequestMapping("/edit")    public String edit(User user) {        userService.edit(user);        return "redirect:/list";    }    @RequestMapping("/delete")    public String delete(Long id) {        userService.delete(id);        return "redirect:/list";    }}
  • return "user/userEdit"; 代表会直接去 resources 目录下找相关的文件。
  • return "redirect:/list"; 代表转发到对应的 Controller,这个示例就相当于删除内容之后自动调整到 list 请求,然后再输出到页面。

页面内容

list 列表

<!DOCTYPE html><html lang="en" xmlns:th="http://www.thymeleaf.org"><head>    <meta charset="UTF-8"/>    <title>userList</title>    <link rel="stylesheet" th:href="@{/css/bootstrap.css}"></link></head><body class="container"><br/><h1>用户列表</h1><br/><br/><div class="with:80%">    <table class="table table-hover">        <thead>        <tr>            <th>#</th>            <th>User Name</th>            <th>Password</th>            <th>Age</th>            <th>Edit</th>            <th>Delete</th>        </tr>        </thead>        <tbody>        <tr  th:each="user : ${users}">            <th scope="row" th:text="${user.id}">1</th>            <td th:text="${user.userName}">neo</td>            <td th:text="${user.password}">Otto</td>            <td th:text="${user.age}">6</td>            <td><a th:href="@{/toEdit(id=${user.id})}">edit</a></td>            <td><a th:href="@{/delete(id=${user.id})}">delete</a></td>        </tr>        </tbody>    </table></div><div class="form-group">    <div class="col-sm-2 control-label">        <a href="/toAdd" th:href="@{/toAdd}" class="btn btn-info">add</a>    </div></div></body></html>

效果图:

Spring Boot + Jpa + Thymeleaf 增删改查示例

 

<tr th:each="user : ${users}"> 这里会从 Controler 层 model set 的对象去获取相关的内容,th:each表示会循环遍历对象内容。

其实还有其它的写法,具体的语法内容可以参考这篇文章: Spring Boot (四): Thymeleaf 使用详解

修改页面:

<!DOCTYPE html><html lang="en" xmlns:th="http://www.thymeleaf.org"><head>    <meta charset="UTF-8"/>    <title>user</title>    <link rel="stylesheet" th:href="@{/css/bootstrap.css}"></link></head><body class="container"><br/><h1>修改用户</h1><br/><br/><div class="with:80%">    <form class="form-horizontal"   th:action="@{/edit}" th:object="${user}"  method="post">        <input type="hidden" name="id" th:value="*{id}" />        <div class="form-group">            <label for="userName" class="col-sm-2 control-label">userName</label>            <div class="col-sm-10">                <input type="text" class="form-control" name="userName"  id="userName" th:value="*{userName}" placeholder="userName"/>            </div>        </div>        <div class="form-group">            <label for="password" class="col-sm-2 control-label" >Password</label>            <div class="col-sm-10">                <input type="password" class="form-control" name="password" id="password"  th:value="*{password}" placeholder="Password"/>            </div>        </div>        <div class="form-group">            <label for="age" class="col-sm-2 control-label">age</label>            <div class="col-sm-10">                <input type="text" class="form-control" name="age"  id="age" th:value="*{age}" placeholder="age"/>            </div>        </div>        <div class="form-group">            <div class="col-sm-offset-2 col-sm-10">                <input type="submit" value="Submit" class="btn btn-info" />                                     <a href="/toAdd" th:href="@{/list}" class="btn btn-info">Back</a>            </div>        </div>    </form></div></body></html>

添加页面和修改类似就不在贴代码了。

效果图:

Spring Boot + Jpa + Thymeleaf 增删改查示例

 

这样一个使用 Jpa 和 Thymeleaf 的增删改查示例就完成了。



Tags:Spring Boot Jpa   点击:()  评论:()
声明:本站部分内容及图片来自互联网,转载是出于传递更多信息之目的,内容观点仅代表作者本人,如有任何标注错误或版权侵犯请与我们联系(Email:2595517585@qq.com),我们将及时更正、删除,谢谢。
▌相关推荐
这篇文章介绍如何使用 Jpa 和 Thymeleaf 做一个增删改查的示例。先和大家聊聊我为什么喜欢写这种脚手架的项目,在我学习一门新技术的时候,总是想快速的搭建起一个 Demo 来试试...【详细内容】
2019-12-25  Tags: Spring Boot Jpa  点击:(88)  评论:(0)  加入收藏
▌简易百科推荐
近日只是为了想尽办法为 Flask 实现 Swagger UI 文档功能,基本上要让 Flask 配合 Flasgger, 所以写了篇 Flask 应用集成 Swagger UI 。然而不断的 Google 过程中偶然间发现了...【详细内容】
2021-12-23  Python阿杰    Tags:FastAPI   点击:(6)  评论:(0)  加入收藏
文章目录1、Quartz1.1 引入依赖<dependency> <groupId>org.quartz-scheduler</groupId> <artifactId>quartz</artifactId> <version>2.3.2</version></dependency>...【详细内容】
2021-12-22  java老人头    Tags:框架   点击:(12)  评论:(0)  加入收藏
今天来梳理下 Spring 的整体脉络啦,为后面的文章做个铺垫~后面几篇文章应该会讲讲这些内容啦 Spring AOP 插件 (了好久都忘了 ) 分享下 4ye 在项目中利用 AOP + MybatisPlus 对...【详细内容】
2021-12-07  Java4ye    Tags:Spring   点击:(14)  评论:(0)  加入收藏
&emsp;前面通过入门案例介绍,我们发现在SpringSecurity中如果我们没有使用自定义的登录界面,那么SpringSecurity会给我们提供一个系统登录界面。但真实项目中我们一般都会使用...【详细内容】
2021-12-06  波哥带你学Java    Tags:SpringSecurity   点击:(18)  评论:(0)  加入收藏
React 简介 React 基本使用<div id="test"></div><script type="text/javascript" src="../js/react.development.js"></script><script type="text/javascript" src="../js...【详细内容】
2021-11-30  清闲的帆船先生    Tags:框架   点击:(19)  评论:(0)  加入收藏
流水线(Pipeline)是把一个重复的过程分解为若干个子过程,使每个子过程与其他子过程并行进行的技术。本文主要介绍了诞生于云原生时代的流水线框架 Argo。 什么是流水线?在计算机...【详细内容】
2021-11-30  叼着猫的鱼    Tags:框架   点击:(21)  评论:(0)  加入收藏
TKinterThinter 是标准的python包,你可以在linx,macos,windows上使用它,你不需要安装它,因为它是python自带的扩展包。 它采用TCL的控制接口,你可以非常方便地写出图形界面,如...【详细内容】
2021-11-30    梦回故里归来  Tags:框架   点击:(27)  评论:(0)  加入收藏
前言项目中的配置文件会有密码的存在,例如数据库的密码、邮箱的密码、FTP的密码等。配置的密码以明文的方式暴露,并不是一种安全的方式,特别是大型项目的生产环境中,因为配置文...【详细内容】
2021-11-17  充满元气的java爱好者  博客园  Tags:SpringBoot   点击:(25)  评论:(0)  加入收藏
一、搭建环境1、创建数据库表和表结构create table account(id INT identity(1,1) primary key,name varchar(20),[money] DECIMAL2、创建maven的工程SSM,在pom.xml文件引入...【详细内容】
2021-11-11  AT小白在线中  搜狐号  Tags:开发框架   点击:(29)  评论:(0)  加入收藏
SpringBoot开发的物联网通信平台系统项目功能模块 功能 说明 MQTT 1.SSL支持 2.集群化部署时暂不支持retain&will类型消 UDP ...【详细内容】
2021-11-05  小程序建站    Tags:SpringBoot   点击:(56)  评论:(0)  加入收藏
最新更新
栏目热门
栏目头条