page도큐먼트 링크https://docs.spring.io/spring-data/commons/docs/current/api/org/springframework/data/domain/Page.html#method.summary Page (Spring Data Core 3.1.2 API)getTotalPages int getTotalPages() Returns the number of total pages. Returns: the number of total pagesdocs.spring.io page사용 방법 1. 쿼리 사용// public interface MemberRepository extends JpaRepository 클래스 내부Page findAll(Pageable pageable);// ..