Springboot整合Mybatis使用分页 PageHelper分页插件
程序员文章站
2022-07-15 10:29:21
...
springboot 实现检索内容分页响应步骤:
-
导入分页插件的maven坐标
<!--分页查询插件--> <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> <version>1.2.12</version> </dependency>
-
在需要分页的Controller中传入分页参数(页数、每页的数量)
@GetMapping("/emp") //传入两个参数分别是:页数(page) size(每页的数量) public Object getEmp(int page,int size){ //传参数启动分页 PageHelper.startPage(page,size); //从数据库中检索到的内容(一个集合) ArrayList<Emp> list = empMapper.getEmp(); //将检索出来的集合传入分页插件的分页方法中,获取指定的页数 PageInfo<Emp> pageInfo = new PageInfo<>(list); //将分好页的结果返回 return pageInfo; }
上一篇: Spring整合MyBatis
推荐阅读
-
SpringBoot项目中分页插件PageHelper无效的问题及解决方法
-
Mybatis分页PageHelper插件代码实例
-
MyBatis 分页插件 PageHelper 使用
-
Spring Mybatis 分页插件使用教程
-
Springboot集成mybatis通用Mapper与分页插件PageHelper
-
springboot 整合 Mybatis的分页插件 PageHelper
-
springboot+mybatis整合分页插件
-
SpringBoot整合Mybatis配置pagehelper分页插件
-
springboot整合mybatis和分页插件pagehelper
-
SpringBoot整合Mybatis分页插件PageHelper