Spring Boot + JPA + SQLite Pagination 처리
Repository JPA에서 Pagination을 사용하기 위해서는 Pagable 객체를 Repository의 쿼리 함수의 파라미터로 넘겨주어야 한다. @Repository public interface TestRepository extends JpaRepository { public Page findByUserId(String userId, Pageable pageable); } Pagable 인터페이스를 구현체인 AbstactPageRequest 클래스를 상속한 **PageRequest**를 사용해서 페이징 정보를 전달한다. 아래는 userId로 테스트 데이터들을 조회하는 컨트롤러 소스이다. Controller package io.spring.api; import org.springframework..
2022. 11. 6. 22:02