1. 程式人生 > 其它 >使用PageHelper對List進行分頁

使用PageHelper對List進行分頁

新增pom依賴:

<dependency>
    <groupId>com.github.pagehelper</groupId>
    <artifactId>pagehelper</artifactId>
    <version>5.3.0</version>
</dependency>

複製下面的工具類就可以使用啦!

import com.github.pagehelper.PageInfo;
import io.swagger.models.auth.In;
 
import java.util.List;
 
/** * 對List進行分頁 */ public class PageUtil { public static <T> PageInfo<T> startPage(List<T> list, Integer pageNum, Integer pageSize) { //建立Page類 com.github.pagehelper.Page page = new com.github.pagehelper.Page(pageNum, pageSize); //為Page類中的total屬性賦值 page.setTotal(list.size());
//計算當前需要顯示的資料下標起始值 int startIndex = (pageNum - 1) * pageSize; int endIndex = Math.min(startIndex + pageSize, list.size()); //從連結串列中擷取需要顯示的子連結串列,並加入到Page page.addAll(list.subList(startIndex,endIndex)); //以Page建立PageInfo PageInfo pageInfo = new PageInfo<>(page);
return pageInfo; } }