This lesson focuses on implementing pagination in a Spring Boot application, starting with writing a test to fetch CashCards one at a time, sorted from highest to lowest amount (descending order).

Key Steps and Concepts:

  1. Writing the Pagination Test:

  2. Running the Tests and Initial Failure:

  3. Implementing Pagination in the Controller:

  4. Understanding the Pagination Code:

  5. Compiling and New Compilation Error:

  6. Extending PagingAndSortingRepository:

  7. Encountering a Runtime Error:

  8. Resolving the Ambiguous Mapping:

  9. Rerunning the Tests:

Conclusion:


한국어 버전:

페이징 구현

이번 강의에서는 Spring Boot 애플리케이션에서 페이징을 구현하는 방법에 대해 알아봅니다. 먼저 테스트를 작성하여 한 번에 하나의 CashCard를 가져오고, 금액을 높은 순서로 정렬하는 작업부터 시작합니다.

주요 단계 및 개념:

  1. 페이징 테스트 작성: