mall整合Elasticsearch實現商品搜索

本文主要講解mall整合Elasticsearch的過程,以實現商品信息在Elasticsearch中的導入、查詢、修改、刪除爲例。java

項目使用框架介紹

Elasticsearch

Elasticsearch 是一個分佈式、可擴展、實時的搜索與數據分析引擎。 它能從項目一開始就賦予你的數據以搜索、分析和探索的能力,可用於實現全文搜索和實時數據統計。node

Elasticsearch的安裝和使用

1.下載Elasticsearch6.2.2的zip包,並解壓到指定目錄,下載地址:https://www.elastic.co/cn/downloads/past-releases/elasticsearch-6-2-2mysql

圖片

2.安裝中文分詞插件,在elasticsearch-6.2.2\bin目錄下執行如下命令:elasticsearch-plugin install https://github.com/medcl/elasticsearch-analysis-ik/releases/download/v6.2.2/elasticsearch-analysis-ik-6.2.2.zipgit

3.運行bin目錄下的elasticsearch.bat啓動Elasticsearchgithub

4.下載Kibana,做爲訪問Elasticsearch的客戶端,請下載6.2.2版本的zip包,並解壓到指定目錄,下載地址:https://artifacts.elastic.co/downloads/kibana/kibana-6.2.2-windows-x86_64.zipweb

5.運行bin目錄下的kibana.bat,啓動Kibana的用戶界面spring

6.訪問http://localhost:5601 便可打開Kibana的用戶界面sql

Spring Data Elasticsearch

Spring Data Elasticsearch是Spring提供的一種以Spring Data風格來操做數據存儲的方式,它能夠避免編寫大量的樣板代碼。數據庫

經常使用註解

@Document
 
 
  1. //標示映射到Elasticsearch文檔上的領域對象windows

  2. public @interface Document {

  3.  //索引庫名次,mysql中數據庫的概念

  4.    String indexName();

  5.  //文檔類型,mysql中表的概念

  6.    String type() default "";

  7.  //默認分片數

  8.    short shards() default 5;

  9.  //默認副本數量

  10.    short replicas() default 1;


  11. }

@Id

//表示是文檔的id,文檔能夠認爲是mysql中表行的概念public @interface Id {}

@Field

public @interface Field {  //文檔中字段的類型    FieldType type() default FieldType.Auto;  //是否創建倒排索引    boolean index() default true;  //是否進行存儲    boolean store() default false;  //分詞器名次    String analyzer() default "";}
//爲文檔自動指定元數據類型public enum FieldType {    Text,//會進行分詞並建了索引的字符類型    Integer,    Long,    Date,    Float,    Double,    Boolean,    Object,    Auto,//自動判斷字段類型    Nested,//嵌套對象類型    Ip,    Attachment,    Keyword//不會進行分詞創建索引的類型}

Sping Data方式的數據操做

繼承ElasticsearchRepository接口能夠得到經常使用的數據操做方法

能夠使用衍生查詢

在接口中直接指定查詢方法名稱即可查詢,無需進行實現,如商品表中有商品名稱、標題和關鍵字,直接定義如下查詢,就能夠對這三個字段進行全文搜索。

    /**     * 搜索查詢     *     * @param name              商品名稱     * @param subTitle          商品標題     * @param keywords          商品關鍵字     * @param page              分頁信息     * @return     */    Page<EsProduct> findByNameOrSubTitleOrKeywords(String name, String subTitle, String keywords, Pageable page);

在idea中直接會提示對應字段

使用@Query註解能夠用Elasticsearch的DSL語句進行查詢
@Query("{"bool" : {"must" : {"field" : {"name" : "?0"}}}}")Page<EsProduct> findByName(String name,Pageable pageable);

項目使用表說明

  • pms_product:商品信息表

  • pms_product_attribute:商品屬性參數表

  • pms_product_attribute_value:存儲產品參數值的表

整合Elasticsearch實現商品搜索

在pom.xml中添加相關依賴

<!--Elasticsearch相關依賴--><dependency>    <groupId>org.springframework.boot</groupId>    <artifactId>spring-boot-starter-data-elasticsearch<artifactId></dependency>

修改SpringBoot配置文件

修改application.yml文件,在spring節點下添加Elasticsearch相關配置。

data:  elasticsearch:    repositories:      enabled: true    cluster-nodes: 127.0.0.1:9300 # es的鏈接地址及端口號    cluster-name: elasticsearch # es集羣的名稱

添加商品文檔對象EsProduct

不須要中文分詞的字段設置成@Field(type = FieldType.Keyword)類型,須要中文分詞的設置成@Field(analyzer = "ikmaxword",type = FieldType.Text)類型。

 
 
  1. package com.macro.mall.tiny.nosql.elasticsearch.document;


  2. import org.springframework.data.annotation.Id;

  3. import org.springframework.data.elasticsearch.annotations.Document;

  4. import org.springframework.data.elasticsearch.annotations.Field;

  5. import org.springframework.data.elasticsearch.annotations.FieldType;


  6. import java.io.Serializable;

  7. import java.math.BigDecimal;

  8. import java.util.List;


  9. /**

  10. * 搜索中的商品信息

  11. * Created by macro on 2018/6/19.

  12. */

  13. @Document(indexName = "pms", type = "product",shards = 1,replicas = 0)

  14. public class EsProduct implements Serializable {

  15.    private static final long serialVersionUID = -1L;

  16.    @Id

  17.    private Long id;

  18.    @Field(type = FieldType.Keyword)

  19.    private String productSn;

  20.    private Long brandId;

  21.    @Field(type = FieldType.Keyword)

  22.    private String brandName;

  23.    private Long productCategoryId;

  24.    @Field(type = FieldType.Keyword)

  25.    private String productCategoryName;

  26.    private String pic;

  27.    @Field(analyzer = "ik_max_word",type = FieldType.Text)

  28.    private String name;

  29.    @Field(analyzer = "ik_max_word",type = FieldType.Text)

  30.    private String subTitle;

  31.    @Field(analyzer = "ik_max_word",type = FieldType.Text)

  32.    private String keywords;

  33.    private BigDecimal price;

  34.    private Integer sale;

  35.    private Integer newStatus;

  36.    private Integer recommandStatus;

  37.    private Integer stock;

  38.    private Integer promotionType;

  39.    private Integer sort;

  40.    @Field(type =FieldType.Nested)

  41.    private List<EsProductAttributeValue> attrValueList;


  42.    //省略了全部getter和setter方法

  43. }

添加EsProductRepository接口用於操做Elasticsearch

繼承ElasticsearchRepository接口,這樣就擁有了一些基本的Elasticsearch數據操做方法,同時定義了一個衍生查詢方法。

 
 
  1. package com.macro.mall.tiny.nosql.elasticsearch.repository;


  2. import com.macro.mall.tiny.nosql.elasticsearch.document.EsProduct;

  3. import org.springframework.data.domain.Page;

  4. import org.springframework.data.domain.Pageable;

  5. import org.springframework.data.elasticsearch.repository.ElasticsearchRepository;


  6. /**

  7. * 商品ES操做類

  8. * Created by macro on 2018/6/19.

  9. */

  10. public interface EsProductRepository extends ElasticsearchRepository<EsProduct, Long> {

  11.    /**

  12.     * 搜索查詢

  13.     *

  14.     * @param name              商品名稱

  15.     * @param subTitle          商品標題

  16.     * @param keywords          商品關鍵字

  17.     * @param page              分頁信息

  18.     * @return

  19.     */

  20.    Page<EsProduct> findByNameOrSubTitleOrKeywords(String name, String subTitle, String keywords, Pageable page);


  21. }

添加EsProductService接口

 
 
  1. package com.macro.mall.tiny.service;


  2. import com.macro.mall.tiny.nosql.elasticsearch.document.EsProduct;

  3. import org.springframework.data.domain.Page;


  4. import java.util.List;


  5. /**

  6. * 商品搜索管理Service

  7. * Created by macro on 2018/6/19.

  8. */

  9. public interface EsProductService {

  10.    /**

  11.     * 從數據庫中導入全部商品到ES

  12.     */

  13.    int importAll();


  14.    /**

  15.     * 根據id刪除商品

  16.     */

  17.    void delete(Long id);


  18.    /**

  19.     * 根據id建立商品

  20.     */

  21.    EsProduct create(Long id);


  22.    /**

  23.     * 批量刪除商品

  24.     */

  25.    void delete(List<Long> ids);


  26.    /**

  27.     * 根據關鍵字搜索名稱或者副標題

  28.     */

  29.    Page<EsProduct> search(String keyword, Integer pageNum, Integer pageSize);


  30. }

添加EsProductService接口的實現類EsProductServiceImpl

 
 
  1. package com.macro.mall.tiny.service.impl;


  2. import com.macro.mall.tiny.dao.EsProductDao;

  3. import com.macro.mall.tiny.nosql.elasticsearch.document.EsProduct;

  4. import com.macro.mall.tiny.nosql.elasticsearch.repository.EsProductRepository;

  5. import com.macro.mall.tiny.service.EsProductService;

  6. import org.slf4j.Logger;

  7. import org.slf4j.LoggerFactory;

  8. import org.springframework.beans.factory.annotation.Autowired;

  9. import org.springframework.data.domain.Page;

  10. import org.springframework.data.domain.PageRequest;

  11. import org.springframework.data.domain.Pageable;

  12. import org.springframework.stereotype.Service;

  13. import org.springframework.util.CollectionUtils;


  14. import java.util.ArrayList;

  15. import java.util.Iterator;

  16. import java.util.List;



  17. /**

  18. * 商品搜索管理Service實現類

  19. * Created by macro on 2018/6/19.

  20. */

  21. @Service

  22. public class EsProductServiceImpl implements EsProductService {

  23.    private static final Logger LOGGER = LoggerFactory.getLogger(EsProductServiceImpl.class);

  24.    @Autowired

  25.    private EsProductDao productDao;

  26.    @Autowired

  27.    private EsProductRepository productRepository;


  28.    @Override

  29.    public int importAll() {

  30.        List<EsProduct> esProductList = productDao.getAllEsProductList(null);

  31.        Iterable<EsProduct> esProductIterable = productRepository.saveAll(esProductList);

  32.        Iterator<EsProduct> iterator = esProductIterable.iterator();

  33.        int result = 0;

  34.        while (iterator.hasNext()) {

  35.            result++;

  36.            iterator.next();

  37.        }

  38.        return result;

  39.    }


  40.    @Override

  41.    public void delete(Long id) {

  42.        productRepository.deleteById(id);

  43.    }


  44.    @Override

  45.    public EsProduct create(Long id) {

  46.        EsProduct result = null;

  47.        List<EsProduct> esProductList = productDao.getAllEsProductList(id);

  48.        if (esProductList.size() > 0) {

  49.            EsProduct esProduct = esProductList.get(0);

  50.            result = productRepository.save(esProduct);

  51.        }

  52.        return result;

  53.    }


  54.    @Override

  55.    public void delete(List<Long> ids) {

  56.        if (!CollectionUtils.isEmpty(ids)) {

  57.            List<EsProduct> esProductList = new ArrayList<>();

  58.            for (Long id : ids) {

  59.                EsProduct esProduct = new EsProduct();

  60.                esProduct.setId(id);

  61.                esProductList.add(esProduct);

  62.            }

  63.            productRepository.deleteAll(esProductList);

  64.        }

  65.    }


  66.    @Override

  67.    public Page<EsProduct> search(String keyword, Integer pageNum, Integer pageSize) {

  68.        Pageable pageable = PageRequest.of(pageNum, pageSize);

  69.        return productRepository.findByNameOrSubTitleOrKeywords(keyword, keyword, keyword, pageable);

  70.    }


  71. }

添加EsProductController定義接口

 
 
  1. package com.macro.mall.tiny.controller;


  2. import com.macro.mall.tiny.common.api.CommonPage;

  3. import com.macro.mall.tiny.common.api.CommonResult;

  4. import com.macro.mall.tiny.nosql.elasticsearch.document.EsProduct;

  5. import com.macro.mall.tiny.service.EsProductService;

  6. import io.swagger.annotations.Api;

  7. import io.swagger.annotations.ApiOperation;

  8. import org.springframework.beans.factory.annotation.Autowired;

  9. import org.springframework.data.domain.Page;

  10. import org.springframework.stereotype.Controller;

  11. import org.springframework.web.bind.annotation.*;


  12. import java.util.List;


  13. /**

  14. * 搜索商品管理Controller

  15. * Created by macro on 2018/6/19.

  16. */

  17. @Controller

  18. @Api(tags = "EsProductController", description = "搜索商品管理")

  19. @RequestMapping("/esProduct")

  20. public class EsProductController {

  21.    @Autowired

  22.    private EsProductService esProductService;


  23.    @ApiOperation(value = "導入全部數據庫中商品到ES")

  24.    @RequestMapping(value = "/importAll", method = RequestMethod.POST)

  25.    @ResponseBody

  26.    public CommonResult<Integer> importAllList() {

  27.        int count = esProductService.importAll();

  28.        return CommonResult.success(count);

  29.    }


  30.    @ApiOperation(value = "根據id刪除商品")

  31.    @RequestMapping(value = "/delete/{id}", method = RequestMethod.GET)

  32.    @ResponseBody

  33.    public CommonResult<Object> delete(@PathVariable Long id) {

  34.        esProductService.delete(id);

  35.        return CommonResult.success(null);

  36.    }


  37.    @ApiOperation(value = "根據id批量刪除商品")

  38.    @RequestMapping(value = "/delete/batch", method = RequestMethod.POST)

  39.    @ResponseBody

  40.    public CommonResult<Object> delete(@RequestParam("ids") List<Long> ids) {

  41.        esProductService.delete(ids);

  42.        return CommonResult.success(null);

  43.    }


  44.    @ApiOperation(value = "根據id建立商品")

  45.    @RequestMapping(value = "/create/{id}", method = RequestMethod.POST)

  46.    @ResponseBody

  47.    public CommonResult<EsProduct> create(@PathVariable Long id) {

  48.        EsProduct esProduct = esProductService.create(id);

  49.        if (esProduct != null) {

  50.            return CommonResult.success(esProduct);

  51.        } else {

  52.            return CommonResult.failed();

  53.        }

  54.    }


  55.    @ApiOperation(value = "簡單搜索")

  56.    @RequestMapping(value = "/search/simple", method = RequestMethod.GET)

  57.    @ResponseBody

  58.    public CommonResult<CommonPage<EsProduct>> search(@RequestParam(required = false) String keyword,

  59.                                                      @RequestParam(required = false, defaultValue = "0") Integer pageNum,

  60.                                                      @RequestParam(required = false, defaultValue = "5") Integer pageSize) {

  61.        Page<EsProduct> esProductPage = esProductService.search(keyword, pageNum, pageSize);

  62.        return CommonResult.success(CommonPage.restPage(esProductPage));

  63.    }


  64. }

進行接口測試

將數據庫中數據導入到Elasticsearch

圖片圖片

進行商品搜索

圖片圖片

相關文章
相關標籤/搜索