【MyBatisPlus】MyBatisPlus介绍与使用

一给  金牌会员 | 2025-3-24 06:41:20 | 显示全部楼层 | 阅读模式
打印 上一主题 下一主题

主题 947|帖子 947|积分 2841

【MyBatisPlus】MyBatisPlus介绍与使用


文章目次







      • 【MyBatisPlus】MyBatisPlus介绍与使用


        • 1、什么MyBatisPlus
        • 2、MyBatisPlus的CRUD操作
        • 3、MyBatisPlus分页使用



1、什么MyBatisPlus

   MyBatisPlus(简称MP)是基于MyBatis框架基础上开辟的增强型工具,旨在简化开辟、提高效率
  

  • 官网:https://baomidou.com/
MyBatisPlus特性:


  • 无侵入:只做增强不做改变,不会对现有工程产生影响
  • 强盛的 CRUD 操作:内置通用 Mapper,少量配置即可实现单表CRUD 操作(如果只做单表增删查改不需要你写任何的sql)
  • 支持 Lambda:编写查询条件无需担心字段写错
  • 支持主键主动生成
  • 内置分页插件
  • ……
常见的开辟方式:


  • 基于MyBatis使用MyBatisPlus
  • 基于Spring使用MyBatisPlus
  • 基于SpringBoot使用MyBatisPlus
2、MyBatisPlus的CRUD操作

   使用mybatisplus的步调
  1. 1. 导入mp的启动器
  2. 2. 编写application.yml文件,配置数据源,打印日志
  3. 3. 编写mapper接口,Mapper接口需要基础BaseMapper接口,BaseMapper接口需要指定操作的是哪个实体类。
  4. 4. 在启动类中扫描的Mapper包
  5. 5. 测试使用
复制代码
  正如官网所言:mybatis-plus在mybatis的基础上只做增强不做改变,因此只需把mybatis的依赖换成mybatis-plus的依赖
  1.       <!-- mybatis-plus的驱动包 -->
  2. <dependency>
  3.         <groupId>com.baomidou</groupId>
  4.         <artifactId>mybatis-plus-boot-starter</artifactId>
  5.         <version>3.4.2</version>
  6. </dependency>
复制代码
**注意:**这是mybatis-plus依赖,真正使用起来肯定是根据项目添加,如:mysql驱动、lombok等。
   编写application.yml文件,配置数据源
  1. mybatis-plus:
  2.   configuration:
  3.     log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  4.     map-underscore-to-camel-case: true
复制代码
  编写mapper接口,Mapper接口需要基础BaseMapper接口,BaseMapper接口需要指定操作的是哪个实体类。
  1. public interface UserMapper extends BaseMapper<User> { //这里操作的是User这个实体类
  2.      
  3. }
复制代码
  mybatis-plus为我们提供了一些尺度数据层的CRUD功能,这些功能省去了我们自定义接口,也与我们自定义接口有部分差别,如下表:
  功能
自定义接口
MP接口
新增
boolean save(T t)
int insert(T t)
删除
boolean delete(int id)
int deleteById(Serializable id)
修改
boolean update(T t)
int updateById(T t)
根据id查询
T getById(int id)
T selectById(Serializable id)
查询全部
List getAll()
List selectList()
分页查询
PageInfo getAll(int page, int size)
IPage selectPage(IPage page)
按条件查询
List getAll(Condition condition)
IPage selectPage(Wrapper queryWrapper)
   新增
  1.     /**
  2.      * 增加
  3.      */
  4.     @Test
  5.     public void testInsert(){
  6.         User user = new User();
  7.         user.setName("小林");
  8.         user.setGender("男");
  9.         user.setPassword("root");
  10.         user.setAge(19);
  11.         user.setTel("18000110011");
  12.         userMapper.insert(user);
  13.     }
复制代码
  删除
  1.     /**
  2.      * 删除
  3.      */
  4.     @Test
  5.     public void testRemove(){
  6.         userMapper.deleteById(1480751909521403906L);
  7.     }
复制代码
  更新
  1.     /**
  2.      * 更新
  3.      */
  4.     @Test
  5.     public void testUpdate(){
  6.         User user =new User();
  7.         user.setId(7L);
  8.         user.setName("张小炮");  //注意: 生成update语句设置的字段为非空字段。
  9.         userMapper.updateById(user); //update user set xx=xx ,xxx=xx ,xx=xx where id =xx
  10.     }
复制代码
  查询全部
  1.     @Test
  2.     public void testUserList(){
  3.         List<User> users = userMapper.selectList(null);
  4.         for (User user : users) {
  5.             System.out.println(user);
  6.         }
  7.     }
复制代码
  条件查询
  1.     /**
  2.      * 条件查询
  3.      */
  4.     @Test
  5.     public void testFindByCondition(){
  6.         //QueryWrapper代表就是条件
  7.         QueryWrapper<User> queryWrapper  = new QueryWrapper<>();
  8.         //添加条件
  9.         //queryWrapper.lt()  greater than 小于
  10.         //queryWrapper.le()  greater equal 小于等于
  11.         //queryWrapper.ge()  greater equal 大于等于
  12.         //queryWrapper.eq()  equal 等于
  13.         //queryWrapper.gt()  greater than 大于
  14.         queryWrapper.gt("age",18);
  15.         List<User> userList = userMapper.selectList(queryWrapper);
  16.         System.out.println("用户列表:"+ userList);
  17.     }
复制代码
3、MyBatisPlus分页使用

功能
MP接口
分页查询
IPage selectPage(IPage page)
如果需要使用到mybatis-plus的分页功能,必须存在一个配置类该配置类创建Mybatis的拦截器,这个拦截器的作用就是在你执行selectPage的方法的时候对sql进行拦截,然后拼接limit语句实现分页。
   设置分页拦截器作为Spring管理的bean
  

  • 在config包下创建一个配置类:MybatisPlusConfig
  • 在类上添加@Configuration
  • 编写方法

    • 方法上使用@Bean注解:添加MybatisPlusInterceptor对象到容器中
    • 创建MybatisPlusInterceptor拦截器对象
    • 添加内部分页拦截器:创建PaginationInnerInterceptor
    @Configuration
    public class MybatisPlusInterceptorConfig {
    1. /**
    2. * 创建MybatisPlusInterceptor拦截器封装里面分页拦截器PaginationInnerInterceptor
    3. * 作用:实现对mp内置分页方法拦截增强,实现分页2条sql语句原理
    4. * @return
    5. */
    6. @Bean
    7. public MybatisPlusInterceptor mybatisPlusInterceptor(){
    8.     MybatisPlusInterceptor mybatisPlusInterceptor = new MybatisPlusInterceptor();
    9.     mybatisPlusInterceptor.addInnerInterceptor(new PaginationInnerInterceptor());
    10.     return mybatisPlusInterceptor;
    11. }
    复制代码
    }

   在测试类中执行分页查询
  

  • 创建分页对象,前面是接口IPage,背面是实现类Page(第几页,每页大小)
  • 调用selectPage方法,传入page对象,无需吸收返回值
  • 获取分页结果
    1. @Test
    2. public void testPage(){
    3.     //查询第一页,每页3条数据
    4.     //1、创建Page对象,构造函数传入当前页码和每页显示多少条数据
    5.     Page<User> page = new Page<>(1, 3); //当前页1  页面大小是3
    6.     //2、执行selectPage方法
    7.     page = userMapper.selectPage(page,null);
    8.     //3、获取分页数据
    9.     System.out.println("总条数:" + page.getTotal());
    10.     List<User> records = page.getRecords();
    11.     for (User record : records) {
    12.         System.out.println(record);
    13.     }
    14.     //4、获取当前页
    15.     System.out.println("当前页:" + page.getCurrent());
    16.     System.out.println("每页大小:" + page.getSize());
    17. }
    复制代码

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

一给

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表