关于springboot 的mybaits的 PageHelper.startPage分页失效问题

Posted 健康平安的活着

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于springboot 的mybaits的 PageHelper.startPage分页失效问题相关的知识,希望对你有一定的参考价值。

一 问题描述

1.1  pom文件的依赖

 

    <dependency>
      <groupId>com.github.pagehelper</groupId>
      <artifactId>pagehelper</artifactId>
      <version>5.1.4</version>
      <scope>compile</scope>
    </dependency>

测试结果:

 

 二  解决问题

2.1 更改pom依赖

    <!-- 分页插件 -->
    <dependency>
      <groupId>com.github.pagehelper</groupId>
      <artifactId>pagehelper-spring-boot-starter</artifactId>
      <version>1.2.5</version>
    </dependency>

测试:

 

以上是关于关于springboot 的mybaits的 PageHelper.startPage分页失效问题的主要内容,如果未能解决你的问题,请参考以下文章

springboot整合mybaits plus 实现分页操作

springboot+mybaits的二级缓存的案例

SpringBoot学习:整合myBaits

Springboot整合Mybaits

springboot 以main方式对mybaits实现crud操作

springboot中mybaits自动返回新增数据的主键