How can I do paging and sorting using spring data with Couchbase
Below are the steps to get the Pagination working.
- update spring-data-couchbase version to
4.3.1
or above - Use
extends CouchbaseRepository<Object, Object>
- Build
Pagebale
Object. Page<Object> findAllById(String id, Pageable page)
That's it