legacy-knowledge-base
公開されました Jun. 30, 2025

getSearchHits() APIメソッドで開始値が考慮されていない

written-by

Sorin Pop

How To articles are not official guidelines or officially supported documentation. They are community-contributed content and may not always reflect the latest updates to Liferay DXP. We welcome your feedback to improve How To articles!

While we make every effort to ensure this Knowledge Base is accurate, it may not always reflect the most recent updates or official guidelines.We appreciate your understanding and encourage you to reach out with any feedback or concerns.

legacy-article

learn-legacy-article-disclaimer-text

問題

  • 検索APIを使用しているのですが(記事通り https://help.liferay.com/hc/en-us/articles/360029046411-Building-Search-Queries-and-Filters)、SearchResponse.getSearchHits()メソッドが返すリストのサイズが、startパラメータが考慮されていない(常に1とみなされる)かのように、正しくないことに気づきました。 この問題を示すgroovyスクリプトの例(search_sample.groovy)を添付しています。

Environment

  • DXP 7.3

解決策

  • SearchContextではなく、searchRequestBuilderで範囲を指定する必要があります:
    searchRequestBuilder.from(start);
    searchRequestBuilder.size(20);

    (SearchContextの範囲は検索許可のフィルタリングに参加し、その過程で内部的に変更されるようです)

did-this-article-resolve-your-issue

legacy-knowledge-base