Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
PR 타입(하나 이상의 PR 타입을 선택해주세요)
반영 브랜치
fix/#208/noOffsetPagination -> develop
변경 사항
pageNumber
제거 : 노오프셋 방식은 이전의 인덱스를 기준으로 다음 컨텐츠를 조회하는 방식으로 현재 페이지 위치가 필요하지 않게 되었습니다.hasPrevious
제거 : 노오프셋 방식과 무한 스크롤 방식의 특징상 앞선 데이터가 있는지는 중요하지 않아 제거하였습니다.number
제거 : 요청값의 설명과 동일합니다.Slice
를 써야하는 이유로는 다음의 컨텐츠가 존재하는지(hasNext
), 실제로 불러와진 데이터가 몇개인지(numberOfElements
)을 자바 코드로 작성하지 않고 반환받을 수 있다는점입니다.테스트 결과