java pageable的参数传递方式

avatar
作者
猴君
阅读量:0

在Java中,Pageable 是一个接口,用于表示分页请求。它通常与Spring Data JPA一起使用,以便在查询数据库时实现分页功能。Pageable 接口包含两个主要方法:getPageNumber()getPageSize(),分别用于获取当前页码和每页显示的记录数。

要在Java中使用 Pageable,您需要创建一个实现了 Pageable 接口的对象。Spring Data JPA提供了一个名为 PageRequest 的实现类。要创建一个 PageRequest 对象,您需要提供两个参数:页码(从0开始)和每页显示的记录数。例如:

import org.springframework.data.domain.PageRequest; import org.springframework.data.domain.Pageable;  public class Main {     public static void main(String[] args) {         int pageNumber = 0; // 页码,从0开始         int pageSize = 10; // 每页显示的记录数          Pageable pageable = PageRequest.of(pageNumber, pageSize);     } } 

在创建了 Pageable 对象后,您可以将其作为参数传递给Spring Data JPA的查询方法。例如,如果您有一个名为 UserRepository 的接口,它继承了 JpaRepository,那么您可以添加一个接受 Pageable 参数的查询方法:

import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.stereotype.Repository;  @Repository public interface UserRepository extends JpaRepository<User, Long> {     Page<User> findAll(Pageable pageable); } 

然后,在您的服务类或控制器类中,您可以调用此方法并传递 Pageable 对象以获取分页结果:

import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.domain.Page; import org.springframework.data.domain.PageRequest; import org.springframework.data.domain.Pageable; import org.springframework.stereotype.Service;  @Service public class UserService {     @Autowired     private UserRepository userRepository;      public Page<User> getUsers(int pageNumber, int pageSize) {         Pageable pageable = PageRequest.of(pageNumber, pageSize);         return userRepository.findAll(pageable);     } } 

这样,您就可以根据所需的页码和每页显示的记录数来获取分页的用户列表。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!