文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Spring Boot如何集成Elasticsearch模块实现简单查询功能

2023-07-02 09:00

关注

这篇文章主要介绍“Spring Boot如何集成Elasticsearch模块实现简单查询功能”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“Spring Boot如何集成Elasticsearch模块实现简单查询功能”文章能帮助大家解决问题。

背景

项目中我们经常会用搜索功能,普通的搜索我们可以用一个SQL的like也能实现匹配,但是搜索的核心需求是全文匹配,对于全文匹配,数据库的索引是根本派不上用场的,那只能全表扫描。全表扫描的速度已经非常慢了,还需要在每条记录上做全文匹配,一个字一个字的比对,导致查询的数据更慢。所以,使用数据来做搜索,性能上完全没法满足要求。

系统集成

引入jar包

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

application.yml文件中添加ES配置

  elasticsearch:    rest:      uris: http://localhost:9200

注意:不同的ES版本,引入jar包和配送属性文件的方式不同,本文采用的是Spring Boot 2.2+Elasticsearch7.0的版本。

创建文档实体

@Document(indexName = "product", createIndex = true)public class Product implements Serializable{    private static final long serialVersionUID = -2408117939493050954L;    @Id    @Field(type = FieldType.Text)    private String id;    @Field(type = FieldType.Text)    private String skuNo;    @Field(type = FieldType.Text)    private String tilte;    @Field(type = FieldType.Double)    private BigDecimal price;        @Field(type = FieldType.Date, format = DateFormat.basic_date_time)    private Date createDate;  }

说明:

接口实现

public interface EsProductRepository extends ElasticsearchRepository<Product,String>{    List<Product> findByskuNoAndTilte(String sku,String title);}

说明:集成ElasticsearchRepository接口,采用的是JPA的方式实现,JPA默认提供了相关的接口实现。

具体实现

Elasticsearch的实现分为基础查询和DSL查询。

基础查询

基础查询主要包含的CRUD查询,以及一些模糊、范围查询等。

新增文档

请求参数

{     "id":"5",     "skuNo":"sku0005",     "tilte":"红楼梦",      "price":"93.37",      "createDate":"1514736000000"}

说明:date类型传入的参数为long类型。

Controller实现

 @PostMapping("/addProduct")    public Result addProduct(@RequestBody Product product)     {        esProductRepository.save(product);        Result result = new Result();        result.setCode(200);        result.setData(product);        return result;    }

返回结果

{    "data": {        "id": "5",        "skuNo": "sku0005",        "tilte": "红楼梦",        "price": 93.37,        "createDate": "2017-12-31T16:00:00.000+00:00"    },    "code": 200,    "msg": null}

修改文档

修改与新增基本相同,唯一区别为:请求参数传入的Id,如果存在则为修改,否则为新增。

通过id查询文档信息

Controller实现

   @GetMapping("/getProductById")    public Result getProductById(@RequestParam String id) {        Optional<Product> product = esProductRepository.findById(id);        return Result.success(product);    }

删除文档

Controller实现

    @PostMapping("/deleteById")    public Result deleteById(@RequestParam String id)     {        return  Result.success(null);    }

分页查询

Controller实现

 @GetMapping("/getPageList")    public Result getPageList(@RequestParam int pageNum,@RequestParam int pageSize)    {        Pageable pageable = PageRequest.of(pageNum, pageSize);        Page<Product> pageList= esProductRepository.findAll(pageable);        return Result.success(pageList);    }

返回结果

{    "data": {        "content": [            {                "id": "1",                "skuNo": "p0001",                "tilte": null,                "price": 99.9,                "createDate": null            },            {                "id": "3",                "skuNo": "p0002",                "tilte": null,                "price": 99.8,                "createDate": null            },            {                "id": "4",                "skuNo": "p0004",                "tilte": null,                "price": 110,                "createDate": null            },            {                "id": "L1zuVYEBuycvlc7eiQ7_",                "skuNo": "sku0001",                "tilte": "水浒传",                "price": 93.37,                "createDate": "1970-01-01T05:37:00.611+00:00"            },            {                "id": "5",                "skuNo": "sku0005",                "tilte": "红楼梦",                "price": 93.37,                "createDate": "2017-12-31T16:00:00.000+00:00"            }        ],        "pageable": {            "sort": {                "sorted": false,                "unsorted": true,                "empty": true            },            "offset": 0,            "pageSize": 5,            "pageNumber": 0,            "paged": true,            "unpaged": false        },        "aggregations": null,        "scrollId": null,        "maxScore": 1.0,        "totalPages": 1,        "totalElements": 5,        "number": 0,        "size": 5,        "sort": {            "sorted": false,            "unsorted": true,            "empty": true        },        "numberOfElements": 5,        "first": true,        "last": true,        "empty": false    },    "code": 200,    "msg": null}

说明:

模糊查询

Controller实现

   @GetMapping("/findByTilteLike")    public Result findByTilteLike(@RequestParam String key) {        List<Product> products = esProductRepository.findByTilteLike(key);        return Result.success(products);    }

说明:模糊查询通过findByxxlike

范围查询

范围查询通常是指>、< >= <=等

Controller实现

  @GetMapping("/findByPriceGreaterThanEqual")    public Result findByPriceGreaterThanEqual(@RequestParam Double price) {        List<Product> products = esProductRepository.findByPriceGreaterThanEqual(price);        return Result.success(products);    }

说明:范围查询通过findByxxGreaterThanEqual

关于“Spring Boot如何集成Elasticsearch模块实现简单查询功能”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注编程网行业资讯频道,小编每天都会为大家更新不同的知识点。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯