使用Elasticsearch与Spring Boot集成实现全文搜索

本文档介绍了如何在Spring Boot应用中集成Elasticsearch实现全文搜索。首先确保Elasticsearch服务器正常启动,然后修改application.properties配置文件,接着创建博客类EsBlog作为文档模型,再创建资源库进行数据操作。在遇到问题并解决后,通过测试用例展示了搜索功能的正确性,实现了基于关键词的全文搜索功能。
摘要由CSDN通过智能技术生成


今天在实验室摸索了一天Elasticsearch与Spring Boot集成,终于初见成效,很开心,mark一下。

启动Elasticsearch

首先,确保已经正确启动了Elasticsearch服务器,windows系统运行Elasticsearch解压文件下的bin/elasticsearch.bat文件(linux系统运行bin/elasticsearch文件)即可。

运行成功后,在浏览器中访问http://localhost:9200,查看是否启动成功,启动成功结果如下:

{
   
  "name" : "Rg9hQgw",   // 默认的节点名称
  "cluster_name" : "elasticsearch", // 默认的集群名称
  "cluster_uuid" : "phE0-t5oTCqeX8XIYsd1Tw",
  "version" : {
   
    "number" : "6.6.1",
    "build_flavor" : "default",
    "build_type" : "zip",
    "build_hash" : "1fd8f69",
    "build_date" : "2019-02-13T17:10:04.160291Z",
    "build_snapshot" : false,
    "lucene_version" : "7.6.0",
    "minimum_wire_compatibility_version" : "5.6.0",
    "minimum_index_compatibility_version" : "5.0.0"
  },
  "tagline" : "You Know, for Search"
}

修改application.properties

#Elasticsearch 服务地址
spring.data.elasticsearch.cluster-nodes=localhost:9300
#设置连接超时时间
spring.data.elasticsearch.properties.transport.tcp.connect_timeout=120s

这里一定要把端口号改为9300。9300 是 Java 客户端的端口,9200 是支持 Restful HTTP 的接口,这两个在使用中应注意区分。

创建文档类

这里我创建了一个简单的博客类EsBlog,专门用于在ES中存储博客文档。代码如下:

package com.minproject.easynews.model.ES;

import org.springframework.data.annotation.Id;
import org.springframework.data.elasticsearch.annotations.Document;

import java.io.Serializable;

/**
 * created time: 2019/03/12 17:57
 * author AmyZhang
 **/
@Document(indexName = "blogtest", type = "blogtest")
public class EsBlog implements Serializable {
   
    private static final long serialVersionUID = 1L;

    @Id
    private String id;
    private String title;
    private String summary;
    private String content;

    // JPA的规范要求无参构造函数;设置为protected防止直接使用
    protected EsBlog() {
   }

    public EsBlog(String title, String summary
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值