SpringBoot整合Mybatis对单表的增、删、改、查操…
2020-03-07 16:05:27来源:博客园 阅读 ()
SpringBoot整合Mybatis对单表的增、删、改、查操作
一.目标
SpringBoot整合Mybatis对单表的增、删、改、查操作
二.开发工具及项目环境
IDE: IntelliJ IDEA 2019.3
SQL:Navicat for MySQL
三.基础环境配置
创建数据库:demodb
创建数据表及插入数据
DROP TABLE IF EXISTS t_employee; CREATE TABLE t_employee ( id int PRIMARY KEY AUTO_INCREMENT COMMENT '主键编号', name varchar(50) DEFAULT NULL COMMENT '员工姓名', sex varchar(2) DEFAULT NULL COMMENT '员工性别', phone varchar(11) DEFAULT NULL COMMENT '电话号码' ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; INSERT INTO t_employee VALUES ('1', '张三丰', '男', '13812345678'); INSERT INTO t_employee VALUES ('2', '郭靖', '男', '18898765432'); INSERT INTO t_employee VALUES ('3', '小龙女', '女', '13965432188'); INSERT INTO t_employee VALUES ('4', '赵敏', '女', '15896385278');
必备Maven依赖如下:
<!-- MySQL依赖--> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <scope>runtime</scope> <version>5.1.48</version> </dependency> <!-- Thymleaf依赖--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency> <!-- mybatis依赖--> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>2.1.1</version> </dependency>
添加配置文件,可用使用yaml配置,即application.yml(与application.properties配置文件,没什么太大的区别)连接池的配置如下:
spring: ##连接数据库配置 datasource: driver-class-name: com.mysql.jdbc.Driver ##jdbc:mysql://(ip地址):(端口号)/(数据库名)?useSSL=false url: jdbc:mysql://localhost:3306/demodb?useUnicode=true&useSSL=false&characterEncoding=UTF8 ##数据库登录名 data-username: root ##登陆密码 data-password: ##静态资源的路径 resources: static-locations=classpath:/templates/
测试配置情况
在java的com包中,新建包controller,在包中创建控制器类:==EmployeeController==
@Controller public class EmployeeController{ //测试使用 @GetMapping("/test") //注解:返回JSON格式 @ResponseBody public String test() { return "test"; } }
启动主程序类,在浏览器中输入:http://localhost:8080/test
四.开始编写
编写ORM实体类
在java的com包中,新建包domain,在包中创建实体类:Employee
public class Employee { private Integer id; //主键 private String name; //员工姓名 private String sex; //员工性别 private String phone; //电话号码 }
==不要忘记封装==
完成mapper层==增删改查==编写
在java的com包中,新建包mapper,在包中创建Mapper接口文件:EmployeeMapper
//表示该类是一个MyBatis接口文件 @Mapper //表示具有将数据库操作抛出的原生异常翻译转化为spring的持久层异常的功能 @Repository public interface EmployeeMapper { //根据id查询出单个数据 @Select("SELECT*FROM t_employee WHERE id=#{id}") Employee findById(Integer id); //查询所有数据 @Select("SELECT * FROM t_employee") public List<Employee> findAll(); //根据id修改数据 @UpdateProvider(type = EmployeeMapperSQL.class,method = "updateEmployee") int updateEmployee(Employee employee); //添加数据 @Insert("INSERT INTO t_employee(name,sex,phone) values(#{name},#{sex},#{name})") public int inserEm(Employee employee); //根据id删除数据 @Delete("DELETE FROM t_employee WHERE id=#{id}") public int deleteEm(Integer id); }
完成service层编写,为controller层提供调用的方法
在java的com包中,新建包service,在包中创建service接口文件:EmployeeServic
```java public interface EmployeeService { //查询所有员工对象 List<Employee> findAll(); //根据id查询单个数据 Employee findById(Integer id); //修改数据 int updateEmployee(Employee employee); //添加数据 int addEmployee(Employee employee); //删除 int deleteEmployee(Integer id); }
在service包中,新建包impl,在包中创建接口的实现类:EmployeeServiceImpl
@Service //事物管理 @Transactional public class EmployeeServiceImpl implements EmployeeService { //注入EmployeeMapper接口 @Autowired private EmployeeMapper employeeMapper; //查询所有数据 public List<Employee> findAll() { return employeeMapper.findAll(); } //根据id查询单个数据 public Employee findById(Integer id) { return employeeMapper.findById(id); } //修改数据 public int updateEmployee(Employee employee) { return employeeMapper.updateEmployee(employee); } //添加 public int addEmployee(Employee employee) { return employeeMapper.inserEm(employee); } //根据id删除单个数据 public int deleteEmployee(Integer id) { return employeeMapper.deleteEm(id); } }
完成Controller层编写,调用serivce层功能,响应页面请求
在先前创建的controller.EmployeeController中编写方法
@Controller public class EmployeeController { @Autowired private EmployeeService employeeService; //主页面 //响应查询所有数据,然后显示所有数据 @GetMapping("/getall") public String getAll(Model model) { List<Employee> employeeList = employeeService.findAll(); model.addAttribute("employeeList", employeeList); return "showAllEmployees"; } //修改页面 //响应到达更新数据的页面 @GetMapping("/toUpdate/{id}") public String toUpdate(@PathVariable Integer id, Model model){ //根据id查询 Employee employee=employeeService.findById(id); //修改的数据 model.addAttribute("employee",employee); //跳转修改 return "update"; } //更新数据请求并返回getall @PostMapping("/update") public String update(Employee employee){ //报告修改 employeeService.updateEmployee(employee); return "redirect:/getall"; } //删除功能 //响应根据id删除单个数据,然后显示所有数据 @GetMapping("/delete/{id}") public String delete(@PathVariable Integer id){ employeeService.deleteEmployee(id); return "redirect:/getall"; } //添加页面 //添加数据 @PostMapping("/add") public String addEmployee(Employee employee){ employeeService.addEmployee(employee); return "redirect:/getall"; } }
五.编写前端
主页面
在resouces的templates中,创建主页面:addEmployee.html
<!DOCTYPE html> <html lang="en" xmlns:th="http://www.thymeleaf.prg"> <head> <meta charset="UTF-8"> <title>添加员工信息</title> </head> <body> <h2>添加员工信息</h2> <form action="/add" method="post"> 姓名:<input type="text" name="name"><br> 性别:<input type="radio" value="男" name="sex" checked="checked">男 <input type="radio" value="女" name="sex" >女<br> 电话:<input type="text" name="phone"><br> <input type="submit" value="添加"> </form> </body> </html>
注意<html lang="en" ==xmlns:th="http://www.thymeleaf.prg"==>
修改页面
resouces的templates中,创建修改页面:update.html
<!DOCTYPE html> <html lang="en" xmlns:th="http://www.thymeleaf.org"> <head> <meta charset="UTF-8"> <title>修改信息</title> </head> <body> <h2>修改信息</h2> <form th:action="@{/update}" th:object="${employee}" method="post"> <input th:type="hidden" th:value="${employee.id}" th:field="*{id}"> 姓名:<input th:type="text" th:value="${employee.name}" th:field="*{name}"><br> 性别:<input th:type="radio" th:value="男" th:checked="${employee.sex=='男'}" th:field="*{sex}">男 <input th:type="radio" th:value="女" th:checked="${employee.sex=='女'}" th:field="*{sex}">女<br> 电话:<input th:type="text" th:value="${employee.phone}" th:field="*{phone}"><br> <input th:type="submit" value="更新"> </form> </body> </html>
添加页面
resouces的templates中,创建添加页面:addEmployee.html
<!DOCTYPE html> <html lang="en" xmlns:th="http://www.thymeleaf.prg"> <head> <meta charset="UTF-8"> <title>添加员工信息</title> </head> <body> <h2>添加员工信息</h2> <form action="/add" method="post"> 姓名:<input type="text" name="name"><br> 性别:<input type="radio" value="男" name="sex" checked="checked">男 <input type="radio" value="女" name="sex" >女<br> 电话:<input type="text" name="phone"><br> <input type="submit" value="添加"> </form> </body> </html>
启动主程序类,在浏览器中输入:http://localhost:8080/getall
原文链接:https://www.cnblogs.com/south-wood/p/12436978.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- springboot2配置JavaMelody与springMVC配置JavaMelody 2020-06-11
- MyBatis中的$和#,用不好,准备走人! 2020-06-11
- SpringBoot 2.3 整合最新版 ShardingJdbc + Druid + MyBatis 2020-06-11
- 掌握SpringBoot-2.3的容器探针:实战篇 2020-06-11
- nacos~配置中心功能~springboot的支持 2020-06-10
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash