[Spring#50] 페이징 / 알고리즘 : 귤 고르기

김한준 Hanjun Kim·2023년 12월 19일
1

내일배움캠프

목록 보기
51/70

페이징

  • 오류 문구
    No primary or single unique constructor found for interface org.springframework.data.domain.Pageable

  • 수정 내용

@GetMapping("/posts")
    public ResponseEntity<ApiResponse> readPostAll(final Pageable pageable) {
        return ResponseEntity.ok(ApiResponse.ok(
                postService.readPostAll(pageable)
        ));
    }
```
public Page<Post> readPostAll(Pageable pageable) {

    return postRepository.findAll(pageable);
}
```

간단히 페이저블로 변경


알고리즘

깃허브 링크 : https://github.com/wkdehf217/codingTest/tree/main/%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%98%EB%A8%B8%EC%8A%A4/2/138476.%E2%80%85%EA%B7%A4%E2%80%85%EA%B3%A0%EB%A5%B4%EA%B8%B0

profile
개발이 하고싶은 개발지망생

0개의 댓글