Pagination works in Spring Data with following declaration in
EntityRepository.java

Page<Entity> findAllByOrderById(Pageable pageable);


But this produces error in Ignite:

java.lang.ClassCastException: com.project.common.igniteserver.model.Entity
> cannot be cast to org.springframework.data.domain.Page


So, does Ignite support pagination?

Reply via email to