Spring数据弹性搜索错页总页数

前端之家收集整理的这篇文章主要介绍了Spring数据弹性搜索错页总页数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有一个简单的存储库

@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并解决了问题.

另一个对此问题的引用:elasticsearch: return TotalPages not correct

原文链接:https://www.f2er.com/spring/431396.html

猜你在找的Spring相关文章