How can I do paging and sorting using spring data with Couchbase

Below are the steps to get the Pagination working.

  1. update spring-data-couchbase version to 4.3.1 or above
  2. Use extends CouchbaseRepository<Object, Object>
  3. Build Pagebale Object.
  4. Page<Object> findAllById(String id, Pageable page)

That's it