概述
今天面试居然被问到mybatis怎么分页,其实我知道可以用Limit实现,但是我回答了用Pageheper插件,其实我对这个插件也是不是很熟悉,还是无意看同事代码用到了,不说了,言归正传,晚上我就想研究下该插件,遇到好多坑,再次记录下,有错误地方还请指出,互相学习。
springboot 2.6.6的版本,引入这个是没有用的
<dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper</artifactId> <version>5.3.0</version> </dependency>
执行了PageHelper.startPage(2,10)后发现没有用,于是网上说引入的包有问题
PageHelper.startPage(2,10);
List places= placesMapper.selectList(null);
PageInfo<Places> placesPageInfo = new PageInfo<Places>(places);
java.lang.ClassNotFoundException: org.mybatis.logging.LoggerFactory 报这个错误,网上引入该包解决
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-extension</artifactId>
<version>3.5.1</version>
</dependency>
以为万事大吉了,发现有报错 Error creating bean with name 'com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration
网上查了跟springboot的版本不兼容
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>1.4.1</version>
</dependency>
老婆孩子都睡了,我也该洗洗睡了,玩个pagehelper不容易啊,各种坑。
以下是我的整个依赖:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.6.6</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.zh</groupId>
<artifactId>mybatisx-test</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>mybatisx-test</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>1.4.4.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.5.1</version>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-extension</artifactId>
<version>3.5.1</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.18</version>
</dependency>
<dependency>
<groupId>com.alibaba.boot</groupId>
<artifactId>nacos-config-spring-boot-starter</artifactId>
<version>0.2.1</version>
</dependency>
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>1.4.1</version>
</dependency>
</dependencies>
最后
以上就是冷傲狗为你收集整理的mybatis pagehelper使用注意事项的全部内容,希望文章能够帮你解决mybatis pagehelper使用注意事项所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复