在Hybris 1808中,如果Adaptive Search没有返回产品信息,可以按照以下步骤进行解决:
List products = adaptiveSearchService.searchProducts("your search query");
确保返回的products
列表不为空。
adaptiveSearchService.reindexProducts();
这将重新将所有产品索引到Adaptive Search中。
local.properties
文件中正确配置了Adaptive Search适配器的相关属性,例如:adaptiveSearch.adapter.[adapterName].url=https://your-adaptive-search-url
adaptiveSearch.adapter.[adapterName].username=your-username
adaptiveSearch.adapter.[adapterName].password=your-password
确保[adapterName]
与适配器的名称匹配,并且提供了正确的URL、用户名和密码。
这些步骤应该能够解决Adaptive Search Hybris 1808中没有产品信息返回的问题。