我有一个简单的存储库
@Repository
public interface SurgeryIndexRepository extends ElasticsearchRepository
当我调用searchIndexRepository.search(query,pageable)之类的搜索方法时,我得到一个页面响应,其中totalPages = 1,numberOfElements = 40,totalElements = 7200.
totalPages有问题,我应该有180.
我的Pageable是Page request [number:0,size 40,sort:date:DESC]
我正在使用Maven:org.springframework.data:spring-data-elasticsearch:3.0.6.RELEASE
最佳答案
此问题已在3.0.7:https://jira.spring.io/browse/DATAES-402中得到解决,我们使用的是3.0.6,因此只升级到当前版本3.0.8.RELEASE并解决了问题.
原文链接:https://www.f2er.com/spring/431396.html另一个对此问题的引用:elasticsearch: return TotalPages not correct