PageHelper.startPage(pageNum,pageSize)分页不起作用

news/2024/11/22 18:48:07/

项目重构,用到了pagehelper,但是发现PageHelper.startPage(pageNum,pageSize);分页不起作用,查找问题发现版本有问题。在这里插入图片描述
springboot的版本:

<spring-boot.version>2.5.4</spring-boot.version>

pagehelper的版本:

<dependency><groupId>com.github.pagehelper</groupId><artifactId>pagehelper</artifactId><version>3.2.1</version>
</dependency>

springboot做了升级。把pagehelper切换成对应的2.0的版本即可。

<dependency><groupId>com.github.pagehelper</groupId><artifactId>pagehelper-spring-boot-starter</artifactId><version>1.2.12</version>
</dependency>

http://www.ppmy.cn/news/708486.html

相关文章

关于Page及page的分页问题

使用mapper查询出的结果是Page类型的数据&#xff0c;但是可以拿Page的父类List去接受&#xff0c;但是如果拿Page类型的数据去做集合相关的操作比如remove()、set()、add()时&#xff0c;会报不支持的operation操作&#xff0c;意思是Page类型的父类数据调用remove方法时&…

Page和PageInfo

Page和PageInfo 两者都能获取到数据&#xff0c;Page是一个ArrayList。 PageInfo是一个对象&#xff0c;能获取到的数据比Page多 如何使用 Page对象 参数解析 private int pageNum; //当前页码 private int pageSize; //每页数据的数量 private int startRow; //始页首行行…

PageDirty、PageWriteback、PageReclaim、PageReferenced、PageUptodate等page的各个状态源码讲解

在看内核文件系统read/write、pagecache、内存回收相关代码时&#xff0c;多多少少应该看过if(PageDirty(page))、if(PageWriteback(page))、if(PageReclaim(page))、if (PageReferenced(page))、if (PageUptodate(page))、trylock_page这样内核代码&#xff0c;依次判断page是…

java利用PageHelper.startPage(page, pageSize)分页

代码如下&#xff1a; RequestMapping(value "/selectLockLog", produces "text/html;charsetUTF-8")ResponseBodypublic String selectLockLog(String deviceuid,RequestParam(requiredtrue,defaultValue"1")Integer page, RequestParam(requ…

附加:PageHelper分页插件的:Page和PageInfo的区别;

说明&#xff1a; &#xff08;1&#xff09;为什么写本篇博客&#xff1f;&#xff1a; ● 在【Spring Boot电商项目29&#xff1a;商品分类模块八&#xff1a;后台的【分类列表&#xff08;平铺&#xff09;】接口&#xff1b;】中&#xff0c;实现分页功能时&#xff0c;使用…

page分页

page分页 PageBean:int totalCount (总记录数)int totalPage (总页码)List<T> list (每页数据)int currentPage (当前页码)int rows (每页显示的记录数)分页使用步骤 1.创建分页对象PageBean. 2.在前端利用bootstrap创建表格和分页工具。&#xff08;如果需要条件…

电脑键盘中英文按键有哪些?有什么作用?

对于电脑键盘&#xff0c;相信大家并不陌生&#xff0c;而在电脑键盘上面有着很多按键&#xff0c;除了数字按键和字母按键之外&#xff0c;还有很多看不懂的英文按键。那么这些英文按键是什么意思呢&#xff1f;如果并不了解&#xff0c;那么小编就为大家介绍所有英文按键的意…

IntelliJ IDEA快捷键大全 + 动图演示

&#x1f447;&#x1f447;关注后回复 “进群” &#xff0c;拉你进程序员交流群&#x1f447;&#x1f447; 来源&#xff1a;blog.csdn.net/weixin_67276852?typeblog 大家好 本文参考了 IntelliJ IDEA 的官网&#xff0c;列举了IntelliJ IDEA&#xff08;Windows 版&#…