前言

上一篇文章中我们讲了 Mybatis-Plus 的定义以及相关特点,并从零开始编写了一个 SpringBoot + Mybatis-Plus 的实例。今天我们就来看看,如何利用 MP 来实现对数据库的增删改查。

日志配置

使用 MP 时,默认是不打印任何 SQL 语句的。而为了方便日常开发工作的调试,我们需要联合控制台和各种数据可视化工具进行语句的拼接检查,因此我们利用 MP 自带的日志功能,在控制台输出我们的 SQL 语句,从而方便我们调试。

在配置文件 application.yml (IDEA 默认生成的配置文件为 application.properties)中,加入一下配置,这样 MP 就会在控制台中打印完整带参数的 SQL 语句,方便我们查看。

  1. mybatis-plus:
  2. configuration:
  3. log-impl: org.apache.ibatis.logging.stdout.StdOutImpl

Mapper CRUD 使用方法

首先我们来看 Mapper 层 CRUD 涉及的一些方法,Mapper 层主要继承自 BaseMapper 接口,里边实现了各种用于操作数据库的增删改查的方法,以下我们就来看看日常我们常用的一些方法。

  1. package com.cunyu.employee.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.cunyu.employee.entity.Employee;
  4. /**
  5. * Created with IntelliJ IDEA.
  6. *
  7. * @author : cunyu
  8. * @version : 1.0
  9. * @project : Employee
  10. * @package : com.cunyu.employee.mapper
  11. * @className : EmployeeMapper
  12. * @createTime : 2021/8/7 17:45
  13. * @description : 员工 Mapper 类
  14. */
  15. public interface EmployeeMapper extends BaseMapper<Employee> {
  16. }

insert 操作

首先是插入数据,insert 方法中,传入我们所要插入数据库的实体对象作为参数即可。

  • 方法声明
  1. /**
  2. * 插入一条记录
  3. *
  4. * @param entity 实体对象
  5. */
  6. int insert(T entity);
  • 插入实例
  1. package com.cunyu.employee;
  2. import com.cunyu.employee.entity.Employee;
  3. import com.cunyu.employee.mapper.EmployeeMapper;
  4. import org.junit.Assert;
  5. import org.junit.jupiter.api.Test;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.boot.test.context.SpringBootTest;
  8. @SpringBootTest
  9. class EmployeeApplicationTests {
  10. @Test
  11. void contextLoads() {
  12. }
  13. @Autowired
  14. private EmployeeMapper employeeMapper;
  15. @Test
  16. void testInsert() {
  17. Employee employee = new Employee();
  18. employee.setId(4L);
  19. employee.setName("赵六");
  20. employee.setSex("男");
  21. employee.setEmail("zhaoliu@cunyu1943.com");
  22. Assert.assertEquals(1, employeeMapper.insert(employee));
  23. System.out.println("插入成功");
  24. }
  25. }
  • 测试结果

日志配置及常用 CRUD - 图1

  • 数据插入后的数据库

日志配置及常用 CRUD - 图2

select 操作

相比于插入数据操作,查询数据的方法就要更多,而且还能实现批量查询和条件查询。

  1. 根据主键查询

将所要查询数据的主键作为参数传入我们的 selectById 方法中,即可实现。

  • 方法声明
  1. /**
  2. * 根据 ID 查询
  3. *
  4. * @param id 主键ID
  5. */
  6. T selectById(Serializable id);
  • 查询实例
  1. package com.cunyu.employee;
  2. import com.cunyu.employee.entity.Employee;
  3. import com.cunyu.employee.mapper.EmployeeMapper;
  4. import org.junit.Assert;
  5. import org.junit.jupiter.api.Test;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.boot.test.context.SpringBootTest;
  8. @SpringBootTest
  9. class EmployeeApplicationTests {
  10. @Test
  11. void contextLoads() {
  12. }
  13. @Autowired
  14. private EmployeeMapper employeeMapper;
  15. @Test
  16. void testSelectById() {
  17. Employee employee = employeeMapper.selectById(3);
  18. System.out.println(employee);
  19. }
  20. }
  • 测试结果

日志配置及常用 CRUD - 图3

  1. 根据主键批量查询

上一个方法每次只能查询一条记录,如果我们想要查询多条数据记录,那么就可以将要查询数据的主键列表传入 selectBatchIds 方法即可。

  • 方法声明
  1. /**
  2. * 查询(根据ID 批量查询)
  3. *
  4. * @param idList 主键ID列表(不能为 null 以及 empty)
  5. */
  6. List<T> selectBatchIds(@Param(Constants.COLLECTION) Collection<? extends Serializable> idList);
  • 批量查询实例
  1. package com.cunyu.employee;
  2. import com.cunyu.employee.entity.Employee;
  3. import com.cunyu.employee.mapper.EmployeeMapper;
  4. import org.junit.Assert;
  5. import org.junit.jupiter.api.Test;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.boot.test.context.SpringBootTest;
  8. @SpringBootTest
  9. class EmployeeApplicationTests {
  10. @Test
  11. void contextLoads() {
  12. }
  13. @Autowired
  14. private EmployeeMapper employeeMapper;
  15. @Test
  16. void testSelectBatchIds() {
  17. List<Integer> ids = new ArrayList<>();
  18. ids.add(1);
  19. ids.add(4);
  20. List<Employee> employeeList = employeeMapper.selectBatchIds(ids);
  21. System.out.println(employeeList);
  22. }
  23. }
  • 测试结果

日志配置及常用 CRUD - 图4

  1. 根据多条件查询

除开支持主键查询外,MP 还支持条件查询,只要将我们的条件传入 Map 列表中,然后将其作为 selectByMap 方法的参数即可,其中传入 Mapkey 对应我们数据库中的字段,而 value 则对应字段的值。

  • 方法声明
  1. /**
  2. * 查询(根据 columnMap 条件)
  3. *
  4. * @param columnMap 表字段 map 对象
  5. */
  6. List<T> selectByMap(@Param(Constants.COLUMN_MAP) Map<String, Object> columnMap);
  • 条件查询实例
  1. package com.cunyu.employee;
  2. import com.cunyu.employee.entity.Employee;
  3. import com.cunyu.employee.mapper.EmployeeMapper;
  4. import org.junit.Assert;
  5. import org.junit.jupiter.api.Test;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.boot.test.context.SpringBootTest;
  8. @SpringBootTest
  9. class EmployeeApplicationTests {
  10. @Test
  11. void contextLoads() {
  12. }
  13. @Autowired
  14. private EmployeeMapper employeeMapper;
  15. @Test
  16. void testSelectByMap() {
  17. Map<String, Object> map = new HashMap<>();
  18. map.put("sex", "男");
  19. map.put("name", "张三");
  20. System.out.println(employeeMapper.selectByMap(map));
  21. }
  22. }
  • 测试结果

日志配置及常用 CRUD - 图5

update 操作

更新操作,主要是根据我们数据库的主键进行查询,将对应主键的实体对象传入 updateById 方法即可。

  • 方法声明
  1. /**
  2. * 根据 ID 修改
  3. *
  4. * @param entity 实体对象
  5. */
  6. int updateById(@Param(Constants.ENTITY) T entity);
  • 更新实例
  1. package com.cunyu.employee;
  2. import com.cunyu.employee.entity.Employee;
  3. import com.cunyu.employee.mapper.EmployeeMapper;
  4. import org.junit.Assert;
  5. import org.junit.jupiter.api.Test;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.boot.test.context.SpringBootTest;
  8. @SpringBootTest
  9. class EmployeeApplicationTests {
  10. @Autowired
  11. private EmployeeMapper employeeMapper;
  12. @Test
  13. void testUpdate() {
  14. Employee employee = new Employee();
  15. employee.setEmail("zhao6@cunyu1943.com");
  16. employee.setName("赵 6");
  17. employee.setSex("女");
  18. employee.setId(4L);
  19. Assert.assertEquals(1, employeeMapper.updateById(employee));
  20. System.out.println("更新成功");
  21. }
  22. }
  • 测试结果

日志配置及常用 CRUD - 图6

  • 数据更新后的数据库

日志配置及常用 CRUD - 图7

delete 操作

删除操作,既可以根据主键删除一条记录,也能根据主键列表实现批量删除,还能根据条件来进行删除。

  1. 根据主键删除一条数据

将所要删除记录的主键作为参数传入 deleteById 方法即可。

  • 方法声明
  1. /**
  2. * 根据 ID 删除
  3. *
  4. * @param id 主键ID
  5. */
  6. int deleteById(Serializable id);
  • 删除实例
  1. package com.cunyu.employee;
  2. import com.cunyu.employee.entity.Employee;
  3. import com.cunyu.employee.mapper.EmployeeMapper;
  4. import org.junit.Assert;
  5. import org.junit.jupiter.api.Test;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.boot.test.context.SpringBootTest;
  8. @SpringBootTest
  9. class EmployeeApplicationTests {
  10. @Autowired
  11. private EmployeeMapper employeeMapper;
  12. @Test
  13. void testDeleteById() {
  14. Assert.assertEquals(1, employeeMapper.deleteById(2L));
  15. System.out.println("删除成功");
  16. }
  17. }
  • 测试结果

日志配置及常用 CRUD - 图8

  • 删除数据后的数据库

日志配置及常用 CRUD - 图9

  1. 根据条件删除

根据条件删除同样是讲条件传入 Map 中,然后将 Map 作为参数传入 deleteByMap 方法,其中 key 对应数据库中的字段,value 对应字段的值。

  • 方法声明
  1. /**
  2. * 根据 columnMap 条件,删除记录
  3. *
  4. * @param columnMap 表字段 map 对象
  5. */
  6. int deleteByMap(@Param(Constants.COLUMN_MAP) Map<String, Object> columnMap);
  • 删除实例
  1. package com.cunyu.employee;
  2. import com.cunyu.employee.entity.Employee;
  3. import com.cunyu.employee.mapper.EmployeeMapper;
  4. import org.junit.Assert;
  5. import org.junit.jupiter.api.Test;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.boot.test.context.SpringBootTest;
  8. @SpringBootTest
  9. class EmployeeApplicationTests {
  10. @Autowired
  11. private EmployeeMapper employeeMapper;
  12. @Test
  13. void testDeleteByMap() {
  14. Map<String, Object> map = new HashMap<>();
  15. map.put("name", "赵 6");
  16. Assert.assertEquals(1, employeeMapper.deleteByMap(map));
  17. System.out.println("删除成功");
  18. }
  19. }
  • 测试结果

日志配置及常用 CRUD - 图10

  • 删除数据后的数据库

日志配置及常用 CRUD - 图11

  1. 根据主键批量删除

将要删除记录的主键传入集合中,然后将集合作为 deleteBatchIds 方法的参数即可。

  • 方法声明
  1. /**
  2. * 删除(根据ID 批量删除)
  3. *
  4. * @param idList 主键ID列表(不能为 null 以及 empty)
  5. */
  6. int deleteBatchIds(@Param(Constants.COLLECTION) Collection<? extends Serializable> idList);
  • 批量删除实例
  1. package com.cunyu.employee;
  2. import com.cunyu.employee.entity.Employee;
  3. import com.cunyu.employee.mapper.EmployeeMapper;
  4. import org.junit.Assert;
  5. import org.junit.jupiter.api.Test;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.boot.test.context.SpringBootTest;
  8. @SpringBootTest
  9. class EmployeeApplicationTests {
  10. @Autowired
  11. private EmployeeMapper employeeMapper;
  12. @Test
  13. void testDeleteBatchIds() {
  14. List<Integer> ids = new ArrayList<>();
  15. ids.add(1);
  16. ids.add(3);
  17. Assert.assertEquals(2, employeeMapper.deleteBatchIds(ids));
  18. System.out.println("删除成功");
  19. }
  20. }
  • 测试结果

日志配置及常用 CRUD - 图12

  • 删除数据后的数据库

日志配置及常用 CRUD - 图13

Service CRUD 接口

Service 层继承自 IService 接口,其中的方法和 Mapper 层中所提供的方法功能是一致的,除了方法名有所不同外,其他基本类似,但 Service 层中提供了更为丰富的方法,两者的继承结构如下图所示。

日志配置及常用 CRUD - 图14

  1. package com.cunyu.employee.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.cunyu.employee.entity.Employee;
  4. /**
  5. * Created with IntelliJ IDEA.
  6. *
  7. * @author : cunyu
  8. * @version : 1.0
  9. * @project : Employee
  10. * @package : com.cunyu.employee.service
  11. * @className : EmployeeService
  12. * @createTime : 2021/8/8 7:52
  13. * @description : 员工服务接口
  14. */
  15. @Service
  16. public interface EmployeeService extends IService<Employee> {
  17. }
  1. package com.cunyu.employee.service.Impl;
  2. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  3. import com.cunyu.employee.entity.Employee;
  4. import com.cunyu.employee.mapper.EmployeeMapper;
  5. import com.cunyu.employee.service.EmployeeService;
  6. /**
  7. * Created with IntelliJ IDEA.
  8. *
  9. * @author : cunyu
  10. * @version : 1.0
  11. * @project : Employee
  12. * @package : com.cunyu.employee.service.Impl
  13. * @className : EmployeeServiceImpl
  14. * @createTime : 2021/8/8 7:53
  15. * @description : 员工服务类实现
  16. */
  17. @Service
  18. public class EmployeeServiceImpl extends ServiceImpl<EmployeeMapper, Employee> implements EmployeeService {
  19. }

Save

  1. 插入一条记录

功能同 Mapper 层中的 insert 方法,只不过方法名不同。

  • 方法声明
  1. // 插入一条记录(选择字段,策略插入)
  2. boolean save(T entity);
  • 插入实例
  1. package com.cunyu.employee;
  2. import com.cunyu.employee.entity.Employee;
  3. import com.cunyu.employee.mapper.EmployeeMapper;
  4. import com.cunyu.employee.service.EmployeeService;
  5. import org.junit.Assert;
  6. import org.junit.jupiter.api.Test;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.boot.test.context.SpringBootTest;
  9. @SpringBootTest
  10. class EmployeeApplicationTests {
  11. @Autowired
  12. private EmployeeService employeeService;
  13. @Test
  14. void testSave() {
  15. Employee employee = new Employee();
  16. employee.setId(5L);
  17. employee.setName("周七");
  18. employee.setEmail("zhouqi@cunyu1943.com");
  19. employee.setSex("女");
  20. Assert.assertTrue(employeeService.save(employee));
  21. System.out.println("插入成功");
  22. }
  23. }
  • 测试结果

日志配置及常用 CRUD - 图15

  • 插入数据后的数据库

日志配置及常用 CRUD - 图16

  1. 批量插入

这里就和 Mapper 层中所有区别,Mapper 层中只支持单次插入,而 Service 层中支持批量插入,而传入的参数就是我们所要传入实体的集合,而且还可以分批次插入和统一插入。

2.1 统一插入

  • 方法声明
  1. // 插入(批量)
  2. boolean saveBatch(Collection<T> entityList);
  • 插入实例
  1. package com.cunyu.employee;
  2. import com.cunyu.employee.entity.Employee;
  3. import com.cunyu.employee.mapper.EmployeeMapper;
  4. import com.cunyu.employee.service.EmployeeService;
  5. import org.junit.Assert;
  6. import org.junit.jupiter.api.Test;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.boot.test.context.SpringBootTest;
  9. import java.util.ArrayList;
  10. import java.util.List;
  11. @SpringBootTest
  12. class EmployeeApplicationTests {
  13. @Autowired
  14. private EmployeeService employeeService;
  15. @Test
  16. void testSaveBatch() {
  17. Employee employee1 = new Employee();
  18. employee1.setId(6L);
  19. employee1.setEmail("zhangliang@cunyu1943.com");
  20. employee1.setSex("男");
  21. employee1.setName("张良");
  22. Employee employee2 = new Employee();
  23. employee2.setId(7L);
  24. employee2.setEmail("zhouyu@cunyu1943.com");
  25. employee2.setName("周瑜");
  26. employee2.setSex("男");
  27. List<Employee> employeeList = new ArrayList<>();
  28. employeeList.add(employee1);
  29. employeeList.add(employee2);
  30. Assert.assertTrue(employeeService.saveBatch(employeeList));
  31. System.out.println("批量插入成功");
  32. }
  33. }
  • 测试结果

日志配置及常用 CRUD - 图17

  • 统一插入后的数据库

日志配置及常用 CRUD - 图18

2.2 分批次插入

  • 方法声明
  1. // 插入(批量)
  2. boolean saveBatch(Collection<T> entityList, int batchSize);
  • 分批次插入实例
  1. package com.cunyu.employee;
  2. import com.cunyu.employee.entity.Employee;
  3. import com.cunyu.employee.mapper.EmployeeMapper;
  4. import com.cunyu.employee.service.EmployeeService;
  5. import org.junit.Assert;
  6. import org.junit.jupiter.api.Test;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.boot.test.context.SpringBootTest;
  9. import java.util.ArrayList;
  10. import java.util.List;
  11. @SpringBootTest
  12. class EmployeeApplicationTests {
  13. @Autowired
  14. private EmployeeService employeeService;
  15. @Test
  16. void testSaveBatch() {
  17. Employee employee1 = new Employee();
  18. employee1.setId(8L);
  19. employee1.setEmail("jialuo@cunyu1943.com");
  20. employee1.setSex("女");
  21. employee1.setName("迦罗");
  22. Employee employee2 = new Employee();
  23. employee2.setId(9L);
  24. employee2.setEmail("zhugeliang@cunyu1943.com");
  25. employee2.setName("诸葛亮");
  26. employee2.setSex("男");
  27. List<Employee> employeeList = new ArrayList<>();
  28. employeeList.add(employee1);
  29. employeeList.add(employee2);
  30. Assert.assertTrue(employeeService.saveBatch(employeeList,2));
  31. System.out.println("批量插入成功");
  32. }
  33. }
  • 测试结果

日志配置及常用 CRUD - 图19

  • 分批次插入后的数据库

日志配置及常用 CRUD - 图20

SaveOrUpdate

  1. 单条修改插入
  • 方法声明
  1. // TableId 注解存在更新记录,否插入一条记录
  2. boolean saveOrUpdate(T entity);
  • 单条修改插入实例
  1. package com.cunyu.employee;
  2. import com.cunyu.employee.entity.Employee;
  3. import com.cunyu.employee.mapper.EmployeeMapper;
  4. import com.cunyu.employee.service.EmployeeService;
  5. import org.junit.Assert;
  6. import org.junit.jupiter.api.Test;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.boot.test.context.SpringBootTest;
  9. import java.util.ArrayList;
  10. import java.util.List;
  11. @SpringBootTest
  12. class EmployeeApplicationTests {
  13. @Autowired
  14. private EmployeeService employeeService;
  15. @Test
  16. void testSaveOrUpdate() {
  17. Employee employee = new Employee();
  18. employee.setId(5L);
  19. employee.setName("周武");
  20. employee.setEmail("zhouwu@cunyu1943.com");
  21. employee.setSex("男");
  22. Assert.assertTrue(employeeService.saveOrUpdate(employee));
  23. System.out.println("更新成功");
  24. }
  25. }
  • 测试结果

日志配置及常用 CRUD - 图21

  • 修改插入后的数据库

日志配置及常用 CRUD - 图22

  1. 批量修改插入

2.1 统一插入

  • 方法声明
  1. // 批量修改插入
  2. boolean saveOrUpdateBatch(Collection<T> entityList);
  • 统一插入实例
  1. package com.cunyu.employee;
  2. import com.cunyu.employee.entity.Employee;
  3. import com.cunyu.employee.mapper.EmployeeMapper;
  4. import com.cunyu.employee.service.EmployeeService;
  5. import org.junit.Assert;
  6. import org.junit.jupiter.api.Test;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.boot.test.context.SpringBootTest;
  9. import java.util.ArrayList;
  10. import java.util.List;
  11. @SpringBootTest
  12. class EmployeeApplicationTests {
  13. @Autowired
  14. private EmployeeService employeeService;
  15. @Test
  16. void testSaveOrUpdateBatch() {
  17. Employee employee1 = new Employee();
  18. employee1.setId(10L);
  19. employee1.setEmail("zhongwuyan@cunyu1943.com");
  20. employee1.setSex("女");
  21. employee1.setName("钟无艳");
  22. Employee employee2 = new Employee();
  23. employee2.setId(11L);
  24. employee2.setEmail("direnjie@cunyu1943.com");
  25. employee2.setName("狄仁杰");
  26. employee2.setSex("男");
  27. List<Employee> employeeList = new ArrayList<>();
  28. employeeList.add(employee1);
  29. employeeList.add(employee2);
  30. Assert.assertTrue(employeeService.saveOrUpdateBatch(employeeList));
  31. System.out.println("批量修改插入成功");
  32. }
  33. }
  • 测试结果

日志配置及常用 CRUD - 图23

  • 统一插入数据后的数据库

日志配置及常用 CRUD - 图24

2.2 分批次插入

  • 方法声明
  1. // 批量修改插入
  2. boolean saveOrUpdateBatch(Collection<T> entityList, int batchSize);
  • 方法实例
  1. package com.cunyu.employee;
  2. import com.cunyu.employee.entity.Employee;
  3. import com.cunyu.employee.mapper.EmployeeMapper;
  4. import com.cunyu.employee.service.EmployeeService;
  5. import org.junit.Assert;
  6. import org.junit.jupiter.api.Test;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.boot.test.context.SpringBootTest;
  9. import java.util.ArrayList;
  10. import java.util.List;
  11. @SpringBootTest
  12. class EmployeeApplicationTests {
  13. @Autowired
  14. private EmployeeService employeeService;
  15. @Test
  16. void testSaveOrUpdateBatch() {
  17. Employee employee1 = new Employee();
  18. employee1.setId(12L);
  19. employee1.setEmail("yuji@cunyu1943.com");
  20. employee1.setSex("女");
  21. employee1.setName("虞姬");
  22. Employee employee2 = new Employee();
  23. employee2.setId(13L);
  24. employee2.setEmail("sulie@cunyu1943.com");
  25. employee2.setName("苏烈");
  26. employee2.setSex("男");
  27. List<Employee> employeeList = new ArrayList<>();
  28. employeeList.add(employee1);
  29. employeeList.add(employee2);
  30. Assert.assertTrue(employeeService.saveOrUpdateBatch(employeeList, 2));
  31. System.out.println("批量修改插入成功");
  32. }
  33. }
  • 测试结果

日志配置及常用 CRUD - 图25

  • 分批次插入数据后的数据库

日志配置及常用 CRUD - 图26

Remove

  1. 根据 ID 删除
  • 方法实例
  1. // 根据 ID 删除
  2. boolean removeById(Serializable id);
  • 删除实例
  1. package com.cunyu.employee;
  2. import com.cunyu.employee.entity.Employee;
  3. import com.cunyu.employee.mapper.EmployeeMapper;
  4. import com.cunyu.employee.service.EmployeeService;
  5. import org.junit.Assert;
  6. import org.junit.jupiter.api.Test;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.boot.test.context.SpringBootTest;
  9. @SpringBootTest
  10. class EmployeeApplicationTests {
  11. @Autowired
  12. private EmployeeService employeeService;
  13. @Test
  14. void testRemoveById() {
  15. Assert.assertTrue(employeeService.removeById(5));
  16. System.out.println("删除成功");
  17. }
  18. }
  • 测试结果

日志配置及常用 CRUD - 图27

日志配置及常用 CRUD - 图28

  1. 根据条件删除
  • 方法声明
  1. // 根据 columnMap 条件,删除记录
  2. boolean removeByMap(Map<String, Object> columnMap);
  • 按条件删除实例
  1. package com.cunyu.employee;
  2. import com.cunyu.employee.entity.Employee;
  3. import com.cunyu.employee.mapper.EmployeeMapper;
  4. import com.cunyu.employee.service.EmployeeService;
  5. import org.junit.Assert;
  6. import org.junit.jupiter.api.Test;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.boot.test.context.SpringBootTest;
  9. import java.util.HashMap;
  10. import java.util.Map;
  11. @SpringBootTest
  12. class EmployeeApplicationTests {
  13. @Autowired
  14. private EmployeeService employeeService;
  15. @Test
  16. void testRemoveByMap() {
  17. Map<String, Object> map = new HashMap<>();
  18. map.put("sex", "女");
  19. Assert.assertTrue(employeeService.removeByMap(map));
  20. System.out.println("删除成功");
  21. }
  22. }
  • 测试结果

日志配置及常用 CRUD - 图29

  • 按条件删除后的数据库

日志配置及常用 CRUD - 图30

  1. 根据 ID 批量删除
  • 方法声明
  1. // 删除(根据ID 批量删除)
  2. boolean removeByIds(Collection<? extends Serializable> idList);
  • 批量删除实例
  1. package com.cunyu.employee;
  2. import com.cunyu.employee.entity.Employee;
  3. import com.cunyu.employee.mapper.EmployeeMapper;
  4. import com.cunyu.employee.service.EmployeeService;
  5. import org.junit.Assert;
  6. import org.junit.jupiter.api.Test;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.boot.test.context.SpringBootTest;
  9. import java.util.ArrayList;
  10. import java.util.List;
  11. @SpringBootTest
  12. class EmployeeApplicationTests {
  13. @Autowired
  14. private EmployeeService employeeService;
  15. @Test
  16. void testRemoveByIds() {
  17. List<Integer> ids = new ArrayList<>();
  18. ids.add(1);
  19. ids.add(4);
  20. Assert.assertTrue(employeeService.removeByIds(ids));
  21. System.out.println("批量删除成功");
  22. }
  23. }
  • 测试结果

日志配置及常用 CRUD - 图31

  • 批量删除后的数据库

日志配置及常用 CRUD - 图32

Update

  1. 根据 ID 选择修改
  • 方法声明
  1. // 根据 ID 选择修改
  2. boolean updateById(T entity);
  • 根据 ID 修改实例
  1. package com.cunyu.employee;
  2. import com.cunyu.employee.entity.Employee;
  3. import com.cunyu.employee.mapper.EmployeeMapper;
  4. import com.cunyu.employee.service.EmployeeService;
  5. import org.junit.Assert;
  6. import org.junit.jupiter.api.Test;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.boot.test.context.SpringBootTest;
  9. @SpringBootTest
  10. class EmployeeApplicationTests {
  11. @Autowired
  12. private EmployeeService employeeService;
  13. @Test
  14. void testUpdateById() {
  15. Employee employee = new Employee();
  16. employee.setId(3L);
  17. employee.setName("程咬金");
  18. employee.setSex("男");
  19. employee.setEmail("chengyaojin@cunyu1943.com");
  20. Assert.assertTrue(employeeService.updateById(employee));
  21. System.out.println("更新成功");
  22. }
  23. }
  • 测试结果

日志配置及常用 CRUD - 图33

  • 更新后的数据库

日志配置及常用 CRUD - 图34

  1. 根据 ID 批量更新

2.1 统一更新

  • 方法声明
  1. // 根据ID 批量更新
  2. boolean updateBatchById(Collection<T> entityList);
  • 批量更新实例
  1. package com.cunyu.employee;
  2. import com.cunyu.employee.entity.Employee;
  3. import com.cunyu.employee.mapper.EmployeeMapper;
  4. import com.cunyu.employee.service.EmployeeService;
  5. import org.junit.Assert;
  6. import org.junit.jupiter.api.Test;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.boot.test.context.SpringBootTest;
  9. import java.util.ArrayList;
  10. import java.util.List;
  11. @SpringBootTest
  12. class EmployeeApplicationTests {
  13. @Autowired
  14. private EmployeeService employeeService;
  15. @Test
  16. void testUpdateBatchById() {
  17. Employee employee1 = new Employee();
  18. employee1.setId(6L);
  19. employee1.setName("妲己");
  20. employee1.setSex("女");
  21. employee1.setEmail("daji@cunyu1943.com");
  22. Employee employee2 = new Employee();
  23. employee2.setId(13L);
  24. employee2.setName("小乔");
  25. employee2.setSex("女");
  26. employee2.setEmail("xiaoqiao@cunyu1943.com");
  27. List<Employee> employeeList = new ArrayList<>();
  28. employeeList.add(employee1);
  29. employeeList.add(employee2);
  30. Assert.assertTrue(employeeService.updateBatchById(employeeList));
  31. System.out.println("更新成功");
  32. }
  33. }
  • 测试结果

日志配置及常用 CRUD - 图35

  • 批量更新后的数据库

日志配置及常用 CRUD - 图36

2.2 分批次更新

  • 方法声明
  1. // 根据ID 批量更新
  2. boolean updateBatchById(Collection<T> entityList, int batchSize);
  • 分批次更新实例
  1. package com.cunyu.employee;
  2. import com.cunyu.employee.entity.Employee;
  3. import com.cunyu.employee.mapper.EmployeeMapper;
  4. import com.cunyu.employee.service.EmployeeService;
  5. import org.junit.Assert;
  6. import org.junit.jupiter.api.Test;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.boot.test.context.SpringBootTest;
  9. import java.util.ArrayList;
  10. import java.util.List;
  11. @SpringBootTest
  12. class EmployeeApplicationTests {
  13. @Autowired
  14. private EmployeeService employeeService;
  15. @Test
  16. void testUpdateBatchById() {
  17. Employee employee1 = new Employee();
  18. employee1.setId(7L);
  19. employee1.setName("武则天");
  20. employee1.setSex("女");
  21. employee1.setEmail("wuzetian@cunyu1943.com");
  22. Employee employee2 = new Employee();
  23. employee2.setId(3L);
  24. employee2.setName("李元芳");
  25. employee2.setSex("男");
  26. employee2.setEmail("liyuanfang@cunyu1943.com");
  27. List<Employee> employeeList = new ArrayList<>();
  28. employeeList.add(employee1);
  29. employeeList.add(employee2);
  30. Assert.assertTrue(employeeService.updateBatchById(employeeList, 2));
  31. System.out.println("更新成功");
  32. }
  33. }
  • 测试结果

日志配置及常用 CRUD - 图37

  • 分批次更新后的数据库

日志配置及常用 CRUD - 图38

Get

  1. 根据 ID 查询

将所要查询记录的 id 作为参数,然后将查询到的实体返回。

  • 方法声明
  1. // 根据 ID 查询
  2. T getById(Serializable id);
  • 查询实例
  1. package com.cunyu.employee;
  2. import com.cunyu.employee.entity.Employee;
  3. import com.cunyu.employee.mapper.EmployeeMapper;
  4. import com.cunyu.employee.service.EmployeeService;
  5. import org.junit.Assert;
  6. import org.junit.jupiter.api.Test;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.boot.test.context.SpringBootTest;
  9. @SpringBootTest
  10. class EmployeeApplicationTests {
  11. @Autowired
  12. private EmployeeService employeeService;
  13. @Test
  14. void testGetById() {
  15. Employee employee = employeeService.getById(9);
  16. System.out.println(employee);
  17. }
  18. }
  • 测试结果

日志配置及常用 CRUD - 图39

List

  1. 查询所有

查询所有记录,然后返回到一个集合中。

  • 方法声明
  1. // 查询所有
  2. List<T> list();
  • 查询实例
  1. package com.cunyu.employee;
  2. import com.cunyu.employee.entity.Employee;
  3. import com.cunyu.employee.mapper.EmployeeMapper;
  4. import com.cunyu.employee.service.EmployeeService;
  5. import org.junit.Assert;
  6. import org.junit.jupiter.api.Test;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.boot.test.context.SpringBootTest;
  9. import java.util.ArrayList;
  10. import java.util.List;
  11. @SpringBootTest
  12. class EmployeeApplicationTests {
  13. @Autowired
  14. private EmployeeService employeeService;
  15. @Test
  16. void testList() {
  17. List<Employee> employeeLists = new ArrayList<>();
  18. employeeLists = employeeService.list();
  19. Assert.assertEquals(6, employeeLists.size());
  20. System.out.println("查询成功");
  21. }
  22. }
  • 测试结果

日志配置及常用 CRUD - 图40

  1. 根据 ID 批量查询

讲所要查询的记录 id 传入集合,然后座位方法参数,最后返回查询到的结果到一个集合中。

  • 方法声明
  1. // 查询(根据ID 批量查询)
  2. Collection<T> listByIds(Collection<? extends Serializable> idList);
  • 批量查询实例
  1. package com.cunyu.employee;
  2. import com.cunyu.employee.entity.Employee;
  3. import com.cunyu.employee.mapper.EmployeeMapper;
  4. import com.cunyu.employee.service.EmployeeService;
  5. import org.junit.Assert;
  6. import org.junit.jupiter.api.Test;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.boot.test.context.SpringBootTest;
  9. import java.util.ArrayList;
  10. import java.util.List;
  11. @SpringBootTest
  12. class EmployeeApplicationTests {
  13. @Autowired
  14. private EmployeeService employeeService;
  15. @Test
  16. void testListByIds() {
  17. List<Long> ids = new ArrayList<>();
  18. ids.add(6L);
  19. ids.add(7L);
  20. Assert.assertEquals(2, employeeService.listByIds(ids).size());
  21. System.out.println("查询成功");
  22. }
  23. }
  • 测试结果

日志配置及常用 CRUD - 图41

  1. 根据条件查询

条件传入 Map 集合,key 对应字段,value 对应值,然后返回集合。

  • 方法声明
  1. // 查询(根据 columnMap 条件)
  2. Collection<T> listByMap(Map<String, Object> columnMap);
  • 根据条件查询实例
  1. package com.cunyu.employee;
  2. import com.cunyu.employee.entity.Employee;
  3. import com.cunyu.employee.mapper.EmployeeMapper;
  4. import com.cunyu.employee.service.EmployeeService;
  5. import org.junit.Assert;
  6. import org.junit.jupiter.api.Test;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.boot.test.context.SpringBootTest;
  9. import java.util.HashMap;
  10. import java.util.Map;
  11. @SpringBootTest
  12. class EmployeeApplicationTests {
  13. @Autowired
  14. private EmployeeService employeeService;
  15. @Test
  16. void testListByMap() {
  17. Map<String, Object> map = new HashMap<>();
  18. map.put("sex", "女");
  19. Assert.assertEquals(3, employeeService.listByMap(map).size());
  20. System.out.println("查询成功");
  21. }
  22. }
  • 测试结果

日志配置及常用 CRUD - 图42

  1. 查询所有列表
  • 方法声明
  1. // 查询所有列表
  2. List<Map<String, Object>> listMaps();
  • 查询实例
  1. package com.cunyu.employee;
  2. import com.cunyu.employee.entity.Employee;
  3. import com.cunyu.employee.mapper.EmployeeMapper;
  4. import com.cunyu.employee.service.EmployeeService;
  5. import org.junit.Assert;
  6. import org.junit.jupiter.api.Test;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.boot.test.context.SpringBootTest;
  9. @SpringBootTest
  10. class EmployeeApplicationTests {
  11. @Autowired
  12. private EmployeeService employeeService;
  13. @Test
  14. void testListMaps() {
  15. Assert.assertEquals(6, employeeService.listMaps());
  16. System.out.println("查询成功");
  17. }
  18. }
  • 测试结果

日志配置及常用 CRUD - 图43

  1. 查询所有记录

用于查询所有数据记录,并将其返回到一个集合中。

  • 方法声明
  1. // 查询全部记录
  2. List<Object> listObjs();
  • 查询实例
  1. package com.cunyu.employee;
  2. import com.cunyu.employee.entity.Employee;
  3. import com.cunyu.employee.mapper.EmployeeMapper;
  4. import com.cunyu.employee.service.EmployeeService;
  5. import org.junit.Assert;
  6. import org.junit.jupiter.api.Test;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.boot.test.context.SpringBootTest;
  9. @SpringBootTest
  10. class EmployeeApplicationTests {
  11. @Autowired
  12. private EmployeeService employeeService;
  13. @Test
  14. void testListObjs() {
  15. Assert.assertEquals(6, employeeService.listObjs().size());
  16. System.out.println("查询成功");
  17. }
  18. }
  • 测试结果

日志配置及常用 CRUD - 图44

Count

  1. 查询记录总数

用于统计数据控中的记录总条数,方法返回记录条数。

  • 方法声明
  1. // 查询总记录数
  2. int count();
  • 查询记录总数实例
  1. package com.cunyu.employee;
  2. import com.cunyu.employee.entity.Employee;
  3. import com.cunyu.employee.mapper.EmployeeMapper;
  4. import com.cunyu.employee.service.EmployeeService;
  5. import org.junit.Assert;
  6. import org.junit.jupiter.api.Test;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.boot.test.context.SpringBootTest;
  9. @SpringBootTest
  10. class EmployeeApplicationTests {
  11. @Autowired
  12. private EmployeeService employeeService;
  13. @Test
  14. void testCount() {
  15. Assert.assertEquals(6, employeeService.count());
  16. System.out.println("查询成功");
  17. }
  18. }
  • 测试结果

日志配置及常用 CRUD - 图45

总结

好了,以上就是关于 Mybatis-Plus 的日志配置以及如何进行 CRUD 的相关内容了,这里 CRUD 主要又分为 Mapper 层和 Service 层,我们可以根据自己的需要进行选择。当然,在我们日常使用中,常常都是两个接口一起使用,关于更多 MP 的使用技巧,我们下期文章再见!