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

PageInfo实现分页

时间:2019-02-26 13:41:14      阅读:753      评论:0      收藏:0      [点我收藏+]

标签:hub   integer   lis   app   put   ati   null   pageinfo   ret   


import com.github.pagehelper.Page;
需要导入的jar Controller
import com.github.pagehelper.PageInfo;


@RequestMapping(value = "/getMoreBook",produces="application/json;charset=utf-8")//处理返回中文乱码
@ResponseBody
public String getMoreBook(String type,String majorCate,@RequestParam(required = false,defaultValue = "1")String page) {
PageInfo<Book> books=new PageInfo<Book>();
books=bookServiceImpl.getMoreBook(type,majorCate,page);
JSONObject jsObj= new JSONObject();
jsObj.put("status",1);
jsObj.put("msg","ok");
jsObj.put("content",books);
return jsObj.toString();
}

Service
PageInfo<Book> getMoreBook(String type, String majorCate, String page);
ServiceImpl
public PageInfo<Book> getMoreBook(String type, String majorCate, String page){
try {
PageHelper.startPage(Integer.parseInt(page), 10);
List<Book> books = bookMapper.getMoreBook(type,majorCate);
PageInfo<Book> pageInfo = new PageInfo<Book>(books);
return pageInfo;
} catch (Exception e) {
e.printStackTrace();
return null;
}
}

返回的数据格式

{
"content": {
"endRow": 100,
"firstPage": 6,
"hasNextPage": true,
"hasPreviousPage": true,
"isFirstPage": false,
"isLastPage": false,
"lastPage": 13,
"list": [{},{}],
"navigateFirstPage": 6,
"navigateLastPage": 13,
"navigatePages": 8,
"navigatepageNums": [6, 7, 8, 9, 10, 11, 12, 13],
"nextPage": 11,
"pageNum": 10,
"pageSize": 10,
"pages": 189,
"prePage": 9,
"size": 10,
"startRow": 91,
"total": 1884
},
"status": 1,
"msg": "ok"
}

PageInfo实现分页

标签:hub   integer   lis   app   put   ati   null   pageinfo   ret   

原文地址:https://www.cnblogs.com/foreverstudy/p/10436300.html

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