|
@@ -5,7 +5,6 @@ import com.macro.mall.search.domain.EsProduct;
|
|
|
import com.macro.mall.search.domain.EsProductRelatedInfo;
|
|
|
import com.macro.mall.search.repository.EsProductRepository;
|
|
|
import com.macro.mall.search.service.EsProductService;
|
|
|
-import org.elasticsearch.action.search.SearchResponse;
|
|
|
import org.elasticsearch.common.lucene.search.function.FunctionScoreQuery;
|
|
|
import org.elasticsearch.index.query.BoolQueryBuilder;
|
|
|
import org.elasticsearch.index.query.QueryBuilders;
|
|
@@ -14,10 +13,10 @@ import org.elasticsearch.index.query.functionscore.ScoreFunctionBuilders;
|
|
|
import org.elasticsearch.search.aggregations.AbstractAggregationBuilder;
|
|
|
import org.elasticsearch.search.aggregations.Aggregation;
|
|
|
import org.elasticsearch.search.aggregations.AggregationBuilders;
|
|
|
-import org.elasticsearch.search.aggregations.bucket.filter.InternalFilter;
|
|
|
-import org.elasticsearch.search.aggregations.bucket.nested.InternalNested;
|
|
|
-import org.elasticsearch.search.aggregations.bucket.terms.LongTerms;
|
|
|
-import org.elasticsearch.search.aggregations.bucket.terms.StringTerms;
|
|
|
+import org.elasticsearch.search.aggregations.bucket.filter.ParsedFilter;
|
|
|
+import org.elasticsearch.search.aggregations.bucket.nested.ParsedNested;
|
|
|
+import org.elasticsearch.search.aggregations.bucket.terms.ParsedLongTerms;
|
|
|
+import org.elasticsearch.search.aggregations.bucket.terms.ParsedStringTerms;
|
|
|
import org.elasticsearch.search.aggregations.bucket.terms.Terms;
|
|
|
import org.elasticsearch.search.sort.SortBuilders;
|
|
|
import org.elasticsearch.search.sort.SortOrder;
|
|
@@ -28,7 +27,10 @@ import org.springframework.data.domain.Page;
|
|
|
import org.springframework.data.domain.PageImpl;
|
|
|
import org.springframework.data.domain.PageRequest;
|
|
|
import org.springframework.data.domain.Pageable;
|
|
|
-import org.springframework.data.elasticsearch.core.ElasticsearchTemplate;
|
|
|
+import org.springframework.data.elasticsearch.core.ElasticsearchRestTemplate;
|
|
|
+import org.springframework.data.elasticsearch.core.SearchHit;
|
|
|
+import org.springframework.data.elasticsearch.core.SearchHits;
|
|
|
+import org.springframework.data.elasticsearch.core.mapping.IndexCoordinates;
|
|
|
import org.springframework.data.elasticsearch.core.query.NativeSearchQuery;
|
|
|
import org.springframework.data.elasticsearch.core.query.NativeSearchQueryBuilder;
|
|
|
import org.springframework.stereotype.Service;
|
|
@@ -39,6 +41,7 @@ import java.util.ArrayList;
|
|
|
import java.util.Iterator;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
+import java.util.stream.Collectors;
|
|
|
|
|
|
|
|
|
/**
|
|
@@ -53,7 +56,7 @@ public class EsProductServiceImpl implements EsProductService {
|
|
|
@Autowired
|
|
|
private EsProductRepository productRepository;
|
|
|
@Autowired
|
|
|
- private ElasticsearchTemplate elasticsearchTemplate;
|
|
|
+ private ElasticsearchRestTemplate elasticsearchRestTemplate;
|
|
|
@Override
|
|
|
public int importAll() {
|
|
|
List<EsProduct> esProductList = productDao.getAllEsProductList(null);
|
|
@@ -157,7 +160,12 @@ public class EsProductServiceImpl implements EsProductService {
|
|
|
nativeSearchQueryBuilder.withSort(SortBuilders.scoreSort().order(SortOrder.DESC));
|
|
|
NativeSearchQuery searchQuery = nativeSearchQueryBuilder.build();
|
|
|
LOGGER.info("DSL:{}", searchQuery.getQuery().toString());
|
|
|
- return productRepository.search(searchQuery);
|
|
|
+ SearchHits<EsProduct> searchHits = elasticsearchRestTemplate.search(searchQuery, EsProduct.class);
|
|
|
+ if(searchHits.getTotalHits()<=0){
|
|
|
+ return new PageImpl<>(null,pageable,0);
|
|
|
+ }
|
|
|
+ List<EsProduct> searchProductList = searchHits.stream().map(SearchHit::getContent).collect(Collectors.toList());
|
|
|
+ return new PageImpl<>(searchProductList,pageable,searchHits.getTotalHits());
|
|
|
}
|
|
|
|
|
|
@Override
|
|
@@ -196,7 +204,12 @@ public class EsProductServiceImpl implements EsProductService {
|
|
|
builder.withPageable(pageable);
|
|
|
NativeSearchQuery searchQuery = builder.build();
|
|
|
LOGGER.info("DSL:{}", searchQuery.getQuery().toString());
|
|
|
- return productRepository.search(searchQuery);
|
|
|
+ SearchHits<EsProduct> searchHits = elasticsearchRestTemplate.search(searchQuery, EsProduct.class);
|
|
|
+ if(searchHits.getTotalHits()<=0){
|
|
|
+ return new PageImpl<>(null,pageable,0);
|
|
|
+ }
|
|
|
+ List<EsProduct> searchProductList = searchHits.stream().map(SearchHit::getContent).collect(Collectors.toList());
|
|
|
+ return new PageImpl<>(searchProductList,pageable,searchHits.getTotalHits());
|
|
|
}
|
|
|
return new PageImpl<>(null);
|
|
|
}
|
|
@@ -225,16 +238,14 @@ public class EsProductServiceImpl implements EsProductService {
|
|
|
.field("attrValueList.name"))));
|
|
|
builder.addAggregation(aggregationBuilder);
|
|
|
NativeSearchQuery searchQuery = builder.build();
|
|
|
- return elasticsearchTemplate.query(searchQuery, response -> {
|
|
|
- LOGGER.info("DSL:{}",searchQuery.getQuery().toString());
|
|
|
- return convertProductRelatedInfo(response);
|
|
|
- });
|
|
|
+ SearchHits<EsProduct> searchHits = elasticsearchRestTemplate.search(searchQuery, EsProduct.class);
|
|
|
+ return convertProductRelatedInfo(searchHits);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 将返回结果转换为对象
|
|
|
*/
|
|
|
- private EsProductRelatedInfo convertProductRelatedInfo(SearchResponse response) {
|
|
|
+ private EsProductRelatedInfo convertProductRelatedInfo(SearchHits<EsProduct> response) {
|
|
|
EsProductRelatedInfo productRelatedInfo = new EsProductRelatedInfo();
|
|
|
Map<String, Aggregation> aggregationMap = response.getAggregations().getAsMap();
|
|
|
//设置品牌
|
|
@@ -253,14 +264,14 @@ public class EsProductServiceImpl implements EsProductService {
|
|
|
productRelatedInfo.setProductCategoryNames(productCategoryNameList);
|
|
|
//设置参数
|
|
|
Aggregation productAttrs = aggregationMap.get("allAttrValues");
|
|
|
- List<LongTerms.Bucket> attrIds = ((LongTerms) ((InternalFilter) ((InternalNested) productAttrs).getProperty("productAttrs")).getProperty("attrIds")).getBuckets();
|
|
|
+ List<? extends Terms.Bucket> attrIds = ((ParsedLongTerms) ((ParsedFilter) ((ParsedNested) productAttrs).getAggregations().get("productAttrs")).getAggregations().get("attrIds")).getBuckets();
|
|
|
List<EsProductRelatedInfo.ProductAttr> attrList = new ArrayList<>();
|
|
|
for (Terms.Bucket attrId : attrIds) {
|
|
|
EsProductRelatedInfo.ProductAttr attr = new EsProductRelatedInfo.ProductAttr();
|
|
|
attr.setAttrId((Long) attrId.getKey());
|
|
|
List<String> attrValueList = new ArrayList<>();
|
|
|
- List<StringTerms.Bucket> attrValues = ((StringTerms) attrId.getAggregations().get("attrValues")).getBuckets();
|
|
|
- List<StringTerms.Bucket> attrNames = ((StringTerms) attrId.getAggregations().get("attrNames")).getBuckets();
|
|
|
+ List<? extends Terms.Bucket> attrValues = ((ParsedStringTerms) attrId.getAggregations().get("attrValues")).getBuckets();
|
|
|
+ List<? extends Terms.Bucket> attrNames = ((ParsedStringTerms) attrId.getAggregations().get("attrNames")).getBuckets();
|
|
|
for (Terms.Bucket attrValue : attrValues) {
|
|
|
attrValueList.add(attrValue.getKeyAsString());
|
|
|
}
|