全文检索工具:第一章:Spring-data-elasticSearch搜索

本文涉及的产品
检索分析服务 Elasticsearch 版,2核4GB开发者规格 1个月
简介: 全文检索工具:第一章:Spring-data-elasticSearch搜索

快速上手:导入删除查询

引入依赖:

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
        </dependency>

控制层:

@Autowired
    private EsProductService esProductService;
    @ApiOperation(value = "简单搜索:根据关键字,品牌名称或者产品名称,产品编号,副标题搜索(字符串:Text类型最大拆分)")
    @RequestMapping(value = "/search/keyword", method = RequestMethod.GET)
    @ResponseBody
    public CommonResult<CommonPage<EsProduct>> searchKeyword(@RequestParam(required = false) String keyword,
                                                            @RequestParam(required = false, defaultValue = "0") Integer pageNum,
                                                            @RequestParam(required = false, defaultValue = "5") Integer pageSize) {
        Page<EsProduct> esProductPage = esProductService.searchKeyword(keyword, pageNum, pageSize);
        return CommonResult.success(CommonPage.restPage(esProductPage));
    }
    @ApiOperation(value = "删除索引库")
    @ApiImplicitParam(name = "indexName", value = "索引库名称",
            defaultValue = "product", paramType = "query", dataType = "String")
    @RequestMapping(value = "/deleteAll", method = RequestMethod.GET)
    @ResponseBody
    public CommonResult<Object> deleteAll(String indexName) {
        int i = esProductService.deleteAll(indexName);
        return CommonResult.success(i);
    }
    @ApiOperation(value = "导入所有产品信息数据库中商品到ES")
    @RequestMapping(value = "/importAll", method = RequestMethod.GET)
    @ResponseBody
    public CommonResult<Integer> importAllList() {
        int count = esProductService.importAll();
        return CommonResult.success(count);
    }

service接口:

public interface EsProductService {
    /**
     * 从数据库中导入所有商品到ES
     */
    int importAll();
    /**
     * 根据关键字,品牌名称或者产品名称搜索(字符串:Text类型最大拆分)
     * @param keyword
     * @param pageNum
     * @param pageSize
     * @return
     */
    Page<EsProduct> searchKeyword(String keyword, Integer pageNum, Integer pageSize);
    /**
     * 删除索引库
     * @return
     */
    int deleteAll(String indexName);
}

业务实现类:

@Service
public class EsProductServiceImpl implements EsProductService {
    private static final Logger LOGGER = LoggerFactory.getLogger(EsProductServiceImpl.class);
    @Autowired
    private EsProductDao productDao;
    @Autowired
    private EsProductRepository productRepository;
    @Autowired
    private ElasticsearchTemplate elasticsearchTemplate;
    @Override
    public int importAll() {
        List<EsProduct> esProductList = productDao.getAllEsProductList(null);
        Iterable<EsProduct> esProductIterable = productRepository.saveAll(esProductList);
        Iterator<EsProduct> iterator = esProductIterable.iterator();
        int result = 0;
        while (iterator.hasNext()) {
            result++;
            iterator.next();
        }
        return result;
    }
    /**
     * 根据关键字,品牌名称或者产品名称,产品编号搜索(字符串:Text类型最大拆分)
     * @param keyword
     * @param pageNum
     * @param pageSize
     * @return
     */
    @Override
    public Page<EsProduct> searchKeyword(String keyword, Integer pageNum, Integer pageSize) {
        Pageable pageable = PageRequest.of(pageNum, pageSize);
        return productRepository.findByKeywordsOrProductNameOrBrandNameOrProductSnOrSubTitle(keyword,keyword,keyword,keyword,keyword,pageable);
    }
    /**
     * 删除索引库
     * @return
     */
    @Override
    public int deleteAll(String indexName) {
        boolean product = elasticsearchTemplate.deleteIndex(indexName);
        if(product){
            return 1;
        }
        return 0;
    }
}

EsProductDao接口

public interface EsProductDao {
    List<EsProduct> getAllEsProductList(@Param("id") Long id);
}

EsProductDao.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.macro.mall.search.dao.EsProductDao">
    <resultMap id="esProductListMap" type="com.macro.mall.search.domain.EsProduct">
        <id column="productId" jdbcType="BIGINT" property="id" />
        <result column="productSn" jdbcType="VARCHAR" property="productSn"/>
        <result column="brandId" jdbcType="BIGINT" property="brandId"/>
        <result column="brandName" jdbcType="VARCHAR" property="brandName"/>
        <result column="productCategoryId" jdbcType="BIGINT" property="productCategoryId"/>
        <result column="productName" jdbcType="VARCHAR" property="productName"/>
        <result column="sale" jdbcType="BIGINT" property="sale"/>
        <result column="subTitle" jdbcType="VARCHAR" property="subTitle"/>
        <result column="price" jdbcType="DECIMAL" property="price"/>
        <result column="keywords" jdbcType="VARCHAR" property="keywords"/>
        <association property="productCategorie" columnPrefix="pc" javaType="com.macro.mall.search.domain.EsProductCategory">
            <id column="productCategoryId" property="id" jdbcType="BIGINT"/>
            <result column="productCategoryName" property="productCategoryName" jdbcType="VARCHAR"/>
        </association>
        <collection property="attributeList" ofType="com.macro.mall.search.domain.EsProductAttribute" javaType="java.util.ArrayList">
            <id column="paProductAttributeId" property="paProductAttributeId" jdbcType="BIGINT"/>
            <result column="paProductAttributeName" property="paProductAttributeName" jdbcType="VARCHAR"/>
            <collection property="attributeValues" ofType="com.macro.mall.search.domain.EsProductAttributeValue" javaType="java.util.ArrayList">
                <id column="pavProductAttributeValueId" property="pavProductAttributeValueId" jdbcType="BIGINT"/>
                <result column="pavProductAttributeValue" property="pavProductAttributeValue" jdbcType="VARCHAR"/>
            </collection>
        </collection>
    </resultMap>
    <select id="getAllEsProductList" resultMap="esProductListMap">
        SELECT
        p.id productId,
        p.product_sn productSn,
        p.brand_id brandId,
        p.brand_name brandName,
        p.product_category_id productCategoryId,
        p.name productName,
        p.sale sale,
        p.sub_title subTitle,
        p.price price,
        p.keywords keywords,
        pav.id pavProductAttributeValueId,
        pav.`value` pavProductAttributeValue,
        pa.id paProductAttributeId,
        pa.`name` paProductAttributeName,
        pc.id pcProductCategoryId,
        pc.`name` pcProductCategoryName
        FROM pms_product p
        LEFT JOIN pms_product_attribute_value pav ON p.id = pav.product_id
        LEFT JOIN pms_product_attribute pa ON pav.product_attribute_id= pa.id
        LEFT JOIN pms_product_category pc ON p.`product_category_id` = pc.`id`
        WHERE delete_status = 0 AND publish_status = 1
        <if test="id!=null">
            and p.id=#{id}
        </if>
    </select>
</mapper>

EsProductRepository接口

public interface EsProductRepository extends ElasticsearchRepository<EsProduct, Long> {
    /**
     * 根据关键字,产品名称,品牌名称,产品编号搜索
     * @param keywords
     * @param productName
     * @param brandName
     * @param page
     * @return
     */
    Page<EsProduct> findByKeywordsOrProductNameOrBrandNameOrProductSnOrSubTitle(String keywords,String productName,String brandName,String productSn,String subTitle,Pageable page);
}

EsProduct实体类:

@Document(indexName = "product", type = "productInfo",shards = 2,replicas = 1,refreshInterval = "-1")
public class EsProduct implements Serializable {
    private static final long serialVersionUID = 2372551074091780419L;
    @Id
    private Long id;
    @Field(analyzer = "ik_max_word",type = FieldType.Text)
    private String productSn;
    private Long brandId;
    @Field(analyzer = "ik_max_word",type = FieldType.Text)
    private String brandName;
    private Long productCategoryId;
    @Field(analyzer = "ik_max_word",type = FieldType.Text)
    private String productName;
    private Long sale;
    @Field(analyzer = "ik_max_word",type = FieldType.Text)
    private String subTitle;
    private BigDecimal price;
    @Field(analyzer = "ik_max_word",type = FieldType.Text)
    private String keywords;
    private List<EsProductAttribute> attributeList;
    private EsProductCategory productCategorie;
    //提供一下get和set方法,我就不写了
}

EsProductAttribute实体类:

EsProductAttribute实体类:
pub

EsProductAttributeValue实体类:

public class EsProductAttributeValue implements Serializable {
    private static final long serialVersionUID = 6713756365860464751L;
    private Long pavProductAttributeValueId;
    @Field(analyzer = "ik_max_word",type = FieldType.Text)
    private String pavProductAttributeValue;
    //提供get 和set方法
}

测试一下:

删除测试



导入数据到es测试



无条件全部搜索测试


有条件搜索测试


 

如果启动报错,可以将原来的

@Document(indexName = "search", type = "article",shards = 1,replicas = 0)

改一下索引库的名称


@Document(indexName = "search11", type = "article",shards = 1,replicas = 0)


再次启动删除索引库再重新导入,之后就不会报错了。


相关实践学习
使用阿里云Elasticsearch体验信息检索加速
通过创建登录阿里云Elasticsearch集群,使用DataWorks将MySQL数据同步至Elasticsearch,体验多条件检索效果,简单展示数据同步和信息检索加速的过程和操作。
ElasticSearch 入门精讲
ElasticSearch是一个开源的、基于Lucene的、分布式、高扩展、高实时的搜索与数据分析引擎。根据DB-Engines的排名显示,Elasticsearch是最受欢迎的企业搜索引擎,其次是Apache Solr(也是基于Lucene)。 ElasticSearch的实现原理主要分为以下几个步骤: 用户将数据提交到Elastic Search 数据库中 通过分词控制器去将对应的语句分词,将其权重和分词结果一并存入数据 当用户搜索数据时候,再根据权重将结果排名、打分 将返回结果呈现给用户 Elasticsearch可以用于搜索各种文档。它提供可扩展的搜索,具有接近实时的搜索,并支持多租户。
相关文章
|
7天前
|
数据采集 人工智能 运维
从企业级 RAG 到 AI Assistant,阿里云Elasticsearch AI 搜索技术实践
本文介绍了阿里云 Elasticsearch 推出的创新型 AI 搜索方案
102 3
从企业级 RAG 到 AI Assistant,阿里云Elasticsearch AI 搜索技术实践
|
20天前
|
机器学习/深度学习 人工智能 运维
阿里云技术公开课直播预告:基于阿里云 Elasticsearch 构建 AI 搜索和可观测 Chatbot
阿里云技术公开课预告:Elastic和阿里云搜索技术专家将深入解读阿里云Elasticsearch Enterprise版的AI功能及其在实际应用。
124 2
阿里云技术公开课直播预告:基于阿里云 Elasticsearch 构建 AI 搜索和可观测 Chatbot
|
4天前
|
数据采集 人工智能 运维
从企业级 RAG 到 AI Assistant,阿里云Elasticsearch AI 搜索技术实践
本文介绍了阿里云 Elasticsearch 推出的创新型 AI 搜索方案。
|
13天前
|
Java Maven Spring
【Spring工具插件】lombok使用和EditStarter插件
本文第一个板块主要介绍了SpringMVC中lombok依赖的引入,和相应的使用方法,以及浅显的原理解释,第二个板块主要介绍EditStarter插件的安装与使用
|
1月前
|
Java 开发者 微服务
Spring Boot 入门:简化 Java Web 开发的强大工具
Spring Boot 是一个开源的 Java 基础框架,用于创建独立、生产级别的基于Spring框架的应用程序。它旨在简化Spring应用的初始搭建以及开发过程。
63 6
Spring Boot 入门:简化 Java Web 开发的强大工具
|
23天前
|
存储 人工智能 API
(Elasticsearch)使用阿里云 infererence API 及 semantic text 进行向量搜索
本文展示了如何使用阿里云 infererence API 及 semantic text 进行向量搜索。
|
19天前
|
搜索推荐 API 定位技术
一文看懂Elasticsearch的技术架构:高效、精准的搜索神器
Elasticsearch 是一个基于 Lucene 的开源搜索引擎,以其强大的全文本搜索功能和快速的倒排索引技术著称。它不仅支持数字、文本、地理位置等多类型数据,还提供了可调相关度分数、高级查询 DSL 等功能。Elasticsearch 的核心技术流程包括数据导入、解析、索引化、查询处理、得分计算及结果返回,确保高效处理大规模数据并提供准确的搜索结果。通过 RESTful API、Logstash 和 Filebeat 等工具,Elasticsearch 可以从多种数据源中导入和解析数据,支持复杂的查询需求。
77 0
|
2月前
|
存储 缓存 固态存储
Elasticsearch高性能搜索
【11月更文挑战第1天】
54 6
|
2月前
|
API 索引
Elasticsearch实时搜索
【11月更文挑战第2天】
53 1
|
3月前
|
人工智能
云端问道12期-构建基于Elasticsearch的企业级AI搜索应用陪跑班获奖名单公布啦!
云端问道12期-构建基于Elasticsearch的企业级AI搜索应用陪跑班获奖名单公布啦!
187 2