List类型的集合转换为Page类型的方法

	List subList = newPipelineList.subList(fromIndex, toIndex);
    Pageable pageable = new PageRequest(page, size);
    Page pipelinePage = new PageImpl<>(subList, pageable, count);

    return new PageInfo<>(pipelinePage);

subList 是分页后的集合
pageable 是“页码”和“每页多少条数据”
count 是数据总条数

参考:https://www.cnblogs.com/lxxcn/p/12517768.html

你可能感兴趣的:(java,java,spring,后端,spring,boot)