码迷,mamicode.com
首页 > 其他好文 > 详细

分页——Mybatis配置PageHelper

时间:2017-08-06 15:55:41      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:style   pos   集中   scons   pageinfo   asp   api   const   ota   

1、pom.xml追加

pagehelper : 4.1.4

 

2、使用

// 使用PageHelper的API,指定当前页码和每页实体个数
PageHelper.startPage(3, BasicsConstant.DEFAULT_PAGE_SIZE);
// 正常使用Mybatis,获得结果集
List<UserPo> pos = userMapper.listBy(userSex);
// 使用PageHelper的API,包装结果集
PageInfo<UserPo> userPage = new PageInfo<>(pos);

int a = userPage.getPageNum();//当前页的页码

int b = userPage.getPageSize();//当前页有几条数据

int c = userPage.getTotal();//结果集中有几条数据

int d = userPage.getPages();//总共几页

boolean g = userPage.isHasPreviousPage();//当前页是否有前一页

boolean h = userPage.isHasNextPage();//当前页是否有后一页

List<UserPo> posInPage = userPage.getList();//获得应该在当前页显示的数据的List

 

分页——Mybatis配置PageHelper

标签:style   pos   集中   scons   pageinfo   asp   api   const   ota   

原文地址:http://www.cnblogs.com/deolin/p/7294757.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!