LoginSignup
0
1

More than 5 years have passed since last update.

[JPA] 個人メモ Paging処理はPageableを使うとすごい便利

Posted at
public Response<List<Some>> getXXX(Integer page, Integer pageSize) {
    Pageable paging = PageRequest.of(page, pageSize);
    List<SomeClass> test = xxxRepo.findByXXXX(100, paging);

これでいける

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1