Pageable으로 페이징처리를 구현한것을 정리해본다. postRepository public interface PostRepository extends JpaRepository { @Query(value = "select p from Post p where p.isPrivate = 0") Page findAll(Pageable pageable); } JpaRepository는 PagingAndSortingRepository를 상속받는다. Pageable 을 매개변수로 받아 Pagination과 Sort를 구현할 수 있다. postController @GetMapping("/postList") public ResponseEntity getPostList(@RequestParam Optional page,..