通用分页的编写
Posted zzzyiren
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通用分页的编写相关的知识,希望对你有一定的参考价值。
1、分页是在dao层封装好的
2、分页的参数:
currentPage:当前页数
pageSize:每页的数量
totalPage:总页数 Math.ceil(totalCount/pageSize)
totalCount:总数量
封装好的集合 List<T> list ;
1 public class Page<T> { 2 private Integer currentPage;//当前页 3 private Integer pageSize;//每页数量 4 private Integer totalPage;//总页数 5 private Long totalCount;//总数量 6 private List<T> list = new ArrayList<T>(); 7 }
以上是关于通用分页的编写的主要内容,如果未能解决你的问题,请参考以下文章