SpringBoot整合pagehelper
SpringBoot整合pagehelper pagehelper相关知识了解 PageHelper.startPage(int PageNum,int PageSize):用来设置页面的位置和展示的数据条目数,我们设置每页展示5条数据。PageInfo用来封装页面信息,返回给前台界面。PageInfo中的一些我们需要用到的参数如下表: 相关属性 说明 PageInfo.list 结果集 PageInfo.pageNum 当前页码 PageInfo.pageSize 当前页面显示的数据条目 PageInfo.pages 总页数 PageInfo.total 数据的总条目数 PageInfo.prePage 上一页 PageInfo.nextPage 下一页 PageInfo.isFirstPage 是否为第一页 PageInfo.isLastPage 是否为最后一页 PageInfo.hasPreviousPage 是否有上一页 PageHelper.hasNextPage 是否有下一页 navigatepageNums 所有导航页号(数组) 1、导入依赖 <!-- Springboot --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter