SpringBoot项目中分页插件PageHelper无效的问题及解决方法
程序员文章站
2022-06-03 15:09:33
在springboot项目中使用分页插件的时候 发现pagehelper插件失效了我导入的是:后来才发 com.github.page...
在springboot项目中使用分页插件的时候 发现pagehelper插件失效了
我导入的是:
后来才发
<dependency> <groupid>com.github.pagehelper</groupid> <artifactid>pagehelper</artifactid> <version>5.1.10</version> </dependency>
现 pagehelper若要在springboot中使用 是需要进行注入的:
@configuration public class mybatisconfiguration { @bean public pagehelperpagehelper(){ system.out.println("mybatisconfiguration.pagehelper()"); pagehelper pagehelper =new pagehelper(); properties properties =new properties(); properties.setproperty("offsetaspagenum","true"); properties.setproperty("rowboundswithcount","true"); properties.setproperty("reasonable","true"); pagehelper.setproperties(properties); return pagehelper; } }
当然 也可使用springboot pagehelper启动器 无需注入 开箱即用 更推荐此方法:
<dependency> <groupid>com.github.pagehelper</groupid> <artifactid>pagehelper-spring-boot-starter</artifactid> <version>1.2.10</version> </dependency>
ps:springboot项目和spring项目依赖分页插件pagehelper不起作用的问题
最近在springboot项目和spring项目同时开发,两个项目都依赖了mybatis框架里的pagehelper分页插件,但是springboot项目分页不起作用,一直查询出所有数据。
错误原因:两项目都引入的依赖为
<dependency> <groupid>com.github.pagehelper</groupid> <artifactid>pagehelper</artifactid> <version>4.0.0</version> </dependency>
解决办法:经过多次调查试验,发现springboot项目依赖的分页插件和spring项目有所不同,需要spring-boot-starter下的包才可以。所以springboot项目需要配置下面的依赖即可:
<dependency> <groupid>com.github.pagehelper</groupid> <artifactid>pagehelper-spring-boot-starter</artifactid> <version>1.2.5</version> </dependency>
总结
到此这篇关于springboot项目中分页插件pagehelper无效的问题及解决方法的文章就介绍到这了,更多相关springboot分页插件pagehelper无效内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!