In “spring-data-elasticsearch” 4.0.4.RELEASE, how to convert SearchHits to Page?
问题 In spring-data-elasticsearch 4.0.4.RELEASE, ElasticsearchRestTemplate 's queryForPage() methods are deprecated, need to use search() instead, which return SearchHits instead of Page . So, how to convert SearchHits to Page , or how to still get results as Page ? I have searched via google, and checked official doc, and checked source code, still don't know the best way, any help? 回答1: The Query parameter to be passed into the search() method can have a Pageable set for the request. To wrap the