• 教你手撕MybatisPlus分页原理


    在日常开发中经常会使用分页查询操作,而分页语句以及分页对象的处理,对于程序员来说是一个绕不开的小难题,虽然有很多Mybatis分页插件可以简化部分步骤,但是使用起来依旧比较繁琐。MybatisPlus的出现,进一步减低了进行分页操作的门槛。本文带着大家学会使用MybatisPlus是分页插件,并对其原理进行一定的分析。接下来我们主要在Spring boot环境下看看如何使用MybatisPlus进行分页查询。

    关于分页插件,我们还需要知道以下两点:

    • 内置分页插件 :MybatisPlus基于 MyBatis 物理分页,开发者无需关心具体操作,配置好插件之后,写分页等同于普通 List 查询.

    • 分页插件支持多种数据库 :支持 MySQL、MariaDB、Oracle、DB2、H2、HSQL、SQLite、Postgre、SQLServer 等多种数据库

    1.MybatisPlus分页快速入门

    1.1准备操作

    我们将通过一个简单的 Demo 来阐述 MyBatis-Plus 的强大功能,在此之前,我们假设您已经:

    • 拥有 Java 开发环境以及相应 IDE
    • 初始化 Spring Boot项目
    • 熟悉 Maven
    • 已经导入mybatisplus依赖,并完成相关配置信息.

    现在有一张表 t_user 结构如下

    编写实体类User:(使用lombok简化)

    1. class="prettyprint hljs kotlin" style="padding: 0.5em; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; color: rgb(68, 68, 68); border-radius: 4px; display: block; margin: 0px 0px 1.5em; font-size: 14px; line-height: 1.5em; word-break: break-all; overflow-wrap: break-word; white-space: pre; background-color: rgb(246, 246, 246); border: none; overflow-x: auto; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">@Data
    2. @TableName("tb_user")
    3. public class User {
    4. //告知id是主键 采用的自增形式
    5. @TableId(type= IdType.AUTO)
    6. private Long id;
    7. @TableField("user_name")
    8. private String userName;
    9. private String password;
    10. private String name;
    11. private Integer age;
    12. private String email;
    13. }
  • 编写 Mapper 包下的 UserMapper 接口

    1. <pre class="prettyprint hljs php" style="padding: 0.5em; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; color: rgb(68, 68, 68); border-radius: 4px; display: block; margin: 0px 0px 1.5em; font-size: 14px; line-height: 1.5em; word-break: break-all; overflow-wrap: break-word; white-space: pre; background-color: rgb(246, 246, 246); border: none; overflow-x: auto; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">public interface UserMapper extends BaseMapper<User> {
    2. }

    1.2 完成分页查询需求

    1.2.1 导入核心插件MybatisPlusInterceptor

    由于mp分页是基于插件产生,所以我们需要先 导入核心插件到springboot中.

    1. class="prettyprint hljs java" style="padding: 0.5em; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; color: rgb(68, 68, 68); border-radius: 4px; display: block; margin: 0px 0px 1.5em; font-size: 14px; line-height: 1.5em; word-break: break-all; overflow-wrap: break-word; white-space: pre; background-color: rgb(246, 246, 246); border: none; overflow-x: auto; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">@Configuration
    2. @MapperScan("com.itheima.mapper")
    3. public class MybatisPlusConfig {
    4. /**
    5. * 新的分页插件,一缓和二缓遵循mybatis的规则,需要设置 MybatisConfiguration#useDeprecatedExecutor = false 避免缓存出现问题(该属性会在旧插件移除后一同移除)
    6. */
    7. @Bean
    8. public MybatisPlusInterceptor mybatisPlusInterceptor() {
    9. MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
    10. // 配置分页插件
    11. interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL));
    12. return interceptor;
    13. }
    14. @Bean
    15. public ConfigurationCustomizer configurationCustomizer() {
    16. return configuration -> configuration.setUseDeprecatedExecutor(false);
    17. }
    18. }

    1.2.2 使用Mpper分页查询接口

    1. <pre class="prettyprint hljs dart" style="padding: 0.5em; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; color: rgb(68, 68, 68); border-radius: 4px; display: block; margin: 0px 0px 1.5em; font-size: 14px; line-height: 1.5em; word-break: break-all; overflow-wrap: break-word; white-space: pre; background-color: rgb(246, 246, 246); border: none; overflow-x: auto; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">// 根据 entity 条件,查询全部记录(并翻页)
    2. IPage<T> selectPage(IPage<T> page, @Param(Constants.WRAPPER) Wrapper<T> queryWrapper);
    3. // 根据 Wrapper 条件,查询全部记录(并翻页)
    4. IPage> selectMapsPage(IPage<T> page, @Param(Constants.WRAPPER) Wrapper<T> queryWrapper);

    实现 基本分页查询测试

    1. class="prettyprint hljs java" style="padding: 0.5em; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; color: rgb(68, 68, 68); border-radius: 4px; display: block; margin: 0px 0px 1.5em; font-size: 14px; line-height: 1.5em; word-break: break-all; overflow-wrap: break-word; white-space: pre; background-color: rgb(246, 246, 246); border: none; overflow-x: auto; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">@SpringBootTest
    2. class PageQueryTests {
    3. @Autowired
    4. private UserMapper userMapper;
    5. @Test
    6. void testSelectPage() {
    7. //当前页码
    8. int current = 2;
    9. //每页条数
    10. int size = 2;
    11. //构建 分页构造器
    12. IPage page = new Page(current, size);
    13. //构建 条件构造器
    14. QueryWrapper wrapper = new QueryWrapper<>();
    15. wrapper.lt("age",23);
    16. //执行查询
    17. userMapper.selectPage(page, wrapper);
    18. //它会自动完成 数据的封装 并把查询出来的数据 存储到page对象的一个属性中
    19. // setRecords 把数据存到 Records 里面了
    20. // 总条数 总页数 --page也有封装
    21. //获取page的 Records属性
    22. List records = page.getRecords();//当前页数据
    23. long total = page.getTotal();//总条数
    24. long pages = page.getPages();//总页数
    25. System.out.println("当前数据总共有:"+total);
    26. System.out.println("共"+pages+"页");
    27. System.out.println("当前页数据:"+records);
    28. }

    查询结果如下

    1.3 代码套路总结

    • 构建分页构造器(需要传递分页条件 current,size)
    • 构建条件构造器(支持条件分页查询)
    • 执行查询方法,完成查询
    • 解析查询后结果

    2.MybatisPlus原理分析

    2.1 mybatisplus插件介绍

    MybatisPlus核心插件 MybatisPlusInterceptor,基于该插件mp实现了丰富的特性,

    该插件是核心插件,目前代理了 Executor#query 和 Executor#update 和 StatementHandler#prepare 方法.

    也就是说该插件可以对查询的执行,增删改的执行以及预处理对象进行功能性的增强.

    那么是如何对sql实现拦截增强的呢,我们就要研究一下该分页插件的拦截器集合属性.

    <pre class="prettyprint hljs php" style="padding: 0.5em; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; color: rgb(68, 68, 68); border-radius: 4px; display: block; margin: 0px 0px 1.5em; font-size: 14px; line-height: 1.5em; word-break: break-all; overflow-wrap: break-word; white-space: pre; background-color: rgb(246, 246, 246); border: none; overflow-x: auto; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">private List<InnerInterceptor> interceptors = new ArrayList<>();pre>
    

    InnerInterceptor

    我们提供的插件都将基于此接口来实现功能

    目前已有的功能:s

    • 自动分页: PaginationInnerInterceptor
    • 多租户: TenantLineInnerInterceptor
    • 动态表名: DynamicTableNameInnerInterceptor
    • 乐观锁: OptimisticLockerInnerInterceptor
    • sql 性能规范: IllegalSQLInnerInterceptor
    • 防止全表更新与删除: BlockAttackInnerInterceptor

    由上可知,如果想要研究分页的实现原理就要研究分页拦截器"PaginationInnerInterceptor"

    2.2 PaginationInnerInterceptor 运行原理

    当我们执行该语句时,会在执行sql之前被拦截器拦截

    <pre class="prettyprint hljs less" style="padding: 0.5em; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; color: rgb(68, 68, 68); border-radius: 4px; display: block; margin: 0px 0px 1.5em; font-size: 14px; line-height: 1.5em; word-break: break-all; overflow-wrap: break-word; white-space: pre; background-color: rgb(246, 246, 246); border: none; overflow-x: auto; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">userMapper.selectPage(page, wrapper);pre>
    

    先从我们在mybatis-plus的配置说起

    我们对 分页插件进行拦截会发现,当我们执行sql的时候mybatis-plus会对所有SQL语句进行拦截并做各种判断与附加操作,会进入到Mybatis-Plus全局拦截器.

    下图中是针对分页情况下的特定操作

    由82行可知,当前sql执行时,被拦截器拦截,发现是查询语句,就会先执行winllDoQuery方法,其次做完在执行 beforeQuery.

    因为在配置中new出来的是 PaginationInnerInterceptor 对象,所以这里的方法就会走该对象中的方法

    从源码中不难看出,此处对查询参数做了提取并通过 ParameterUtils.findPage() 方法进行了转换判断,继续往里看:

    可以看到方法中是提取 Map 类型参数中的 IPage 类型参数或者是直接传入 IPage 类型的参数进行提取,如果有则直接返回 IPage 类型的参数,如果为空则返回null不进行count查询.

    上面就是我们在看到的count查询

    那么在什么时候实现的分页查询呢? 刚才在追踪源码的时候也发现了 winllDoQuery方法执行完调用了 beforeQuery(). beforeQuery() 方法对分页查询进行了拦截.

    3 结束语

    其实我们发现,mybatisplus的分页实现其实是借助了拦截器的拦截功能,在查询之前进行了两次拦截,最终完成封装操作.

  • 相关阅读:
    驱动开发:内核封装TDI网络通信接口
    《太赫兹雷达成像技术》阅读笔记 1:第一章 概论
    C++动态输入一个Vector<int>或Vector<string>当作输入接口
    高德地图 计算两个点之间距离
    重生奇迹mu宠物带来不一样的体验
    散列算法比较:MD5、SHA1、SHA256有哪些区别
    java基于微信小程序的电子产品维修预约系统 uniapp 小程序
    月木学途开发 4.公告模块
    Windows 10离线安装.NET Framework 3.5的方法技巧
    c#调用谷歌浏览器打开文件 系统找不到指定的文件
  • 原文地址:https://blog.csdn.net/weixin_62421895/article/details/126224415