前言
Java项目开发中经常要用到分页功能,现在普遍使用SpringBoot进行快速开发,而数据层主要整合SpringDataJPA和MyBatis两种框架,这两种框架都提供了相应的分页工具,使用方式也很简单,可本人在工作中除此以外还用到第三种更方便灵活的分页方式,在这里一同分享给大家。
使用
主要分为SpringDataJPA分页、MyBatis分页、Hutools工具类分页几个部分
1、SpringDataJPA分页
1)、引入依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
2)、Service中编写分页服务
SpringDataJPA分页就是定义Pageable对象来处理分页,其中PageRequest来定义分页参数,Page对象来接手查询结果进行分页包装,包装后的结果pageResult可以得到总记录数、总页数、分页列表等数据结果。
/**
* 根据doctorId查询全部关注列表【分页】
*
* @param doctorId 医生id
* @return 结果集
*/
public Map<String, Object> findAllListByDoctorId(Long doctorId, Integer pageIndex, Integer pageSize) {
Pageable pageable = PageRequest.of(pageIndex - 1, pageSize); // 分页
Page<Follow> pageResult = followRepository.findByDoctorIdOrderByCreatedAtDesc(doctorId, pageable);
List<FollowDTO> dtoList = followMapper.toDto(pageResult.getContent());
if (!CollectionUtils.isEmpty(dtoList)) {
//