개발자의 오르막
[SpringBoot] Page 란? 본문
# Page<T> 제공 메소드
메소드 |
설명 |
int getNumber() |
현재 페이지의 정보 |
int getSize() |
한 페이지의 크기 |
int getTotalPages() |
전체 페이지의 수 |
int getNumberOfElements() |
결과 데이터의 수 |
boolean hasPreviousPage() |
이전 페이지의 존재 여부 |
boolean hasNextPage() |
다음 페이지의 존재 여부 |
boolean isLastPage() |
마지막 페이지 여부 |
Pageable nextPageable() |
다음 페이지 객체 |
Pageable previousPageable() |
이전 페이지 객체 |
List<T> getContent() |
조회된 데이터 |
boolean hasContent() |
결과 존재 여부 |
Sort getSort() |
검색 시 사용된 Sort 정보 |
'SpringFrameWork > SpringBoot' 카테고리의 다른 글
[SpringBoot] Annotation (0) | 2019.12.26 |
---|---|
[SpringBoot] ObjectMapper (0) | 2019.12.26 |
SpringBoot 쿼리 메소드 사용하기 (0) | 2019.11.30 |
SpringBoot REST 기반 파일 업로드 (0) | 2019.10.17 |
Spring Boot JPA Query (0) | 2019.10.08 |
Comments