全网超详细的 SpringBoot 整合 Elasticsearch 实战教程

在pom.xml里加入如下依赖:

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

非常重要:检查依赖版本是否与你当前所用的版本是否一致,如果不一致,会连接失败!!!!!!!!

# 创建高级客户端

import org.apache.http.HttpHost;import org.elasticsearch.client.RestClient;import org.elasticsearch.client.RestHighLevelClient;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;@Configurationpublic class ElasticSearchClientConfig {    @Bean    public RestHighLevelClient restHighLevelClient(){        RestHighLevelClient client = new RestHighLevelClient(                RestClient.builder(                        new HttpHost("服务器IP", 9200, "http")));        return client;    }}
 

# 基本用法

1.创建、判断存在、删除索引

import org.elasticsearch.action.admin.indices.delete.DeleteIndexRequest;import org.elasticsearch.action.support.master.AcknowledgedResponse;import org.elasticsearch.client.RequestOptions;import org.elasticsearch.client.RestHighLevelClient;import org.elasticsearch.client.indices.CreateIndexRequest;import org.elasticsearch.client.indices.CreateIndexResponse;import org.elasticsearch.client.indices.GetIndexRequest;import org.junit.jupiter.api.Test;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.boot.test.context.SpringBootTest;
import java.io.IOException;
@SpringBootTestclass ElasticsearchApplicationTests {
  @Autowired  private RestHighLevelClient restHighLevelClient;
  @Test  void testCreateIndex() throws IOException {    //1.创建索引请求    CreateIndexRequest request = new CreateIndexRequest("ljx666");    //2.客户端执行请求IndicesClient,执行create方法创建索引,请求后获得响应    CreateIndexResponse response=        restHighLevelClient.indices().create(request, RequestOptions.DEFAULT);    System.out.println(response);  }
  @Test  void testExistIndex() throws IOException {        //1.查询索引请求    GetIndexRequest request=new GetIndexRequest("ljx666");        //2.执行exists方法判断是否存在    boolean exists=restHighLevelClient.indices().exists(request,RequestOptions.DEFAULT);    System.out.println(exists);  }
  @Test  void testDeleteIndex() throws IOException {        //1.删除索引请求    DeleteIndexRequest request=new DeleteIndexRequest("ljx666");        //执行delete方法删除指定索引    AcknowledgedResponse delete = restHighLevelClient.indices().delete(request, RequestOptions.DEFAULT);    System.out.println(delete.isAcknowledged());  }
}

2.对文档的CRUD

创建文档:

注意:如果添加时不指定文档ID,他就会随机生成一个ID,ID唯一。

创建文档时若该ID已存在,发送创建文档请求后会更新文档中的数据。

@Testvoid testAddUser() throws IOException {  //1.创建对象  User user=new User("Go",21,new String[]{"内卷","吃饭"});  //2.创建请求  IndexRequest request=new IndexRequest("ljx666");  //3.设置规则 PUT /ljx666/_doc/1  //设置文档id=6,设置超时=1s等,不设置会使用默认的  //同时支持链式编程如 request.id("6").timeout("1s");  request.id("6");  request.timeout("1s");
  //4.将数据放入请求,要将对象转化为json格式    //XContentType.JSON,告诉它传的数据是JSON类型  request.source(JSONValue.toJSONString(user), XContentType.JSON);
  //5.客户端发送请求,获取响应结果  IndexResponse indexResponse=restHighLevelClient.index(request,RequestOptions.DEFAULT);  System.out.println(indexResponse.toString());  System.out.println(indexResponse.status());}

获取文档中的数据:

@Testvoid testGetUser() throws IOException {  //1.创建请求,指定索引、文档id  GetRequest request=new GetRequest("ljx666","1");  GetResponse getResponse=restHighLevelClient.get(request,RequestOptions.DEFAULT);
  System.out.println(getResponse);//获取响应结果  //getResponse.getSource() 返回的是Map集合  System.out.println(getResponse.getSourceAsString());//获取响应结果source中内容,转化为字符串
}

更新文档数据:

注意:需要将User对象中的属性全部指定值,不然会被设置为空,如User只设置了名称,那么只有名称会被修改成功,其他会被修改为null。

@Testvoid testUpdateUser() throws IOException {  //1.创建请求,指定索引、文档id  UpdateRequest request=new UpdateRequest("ljx666","6");
  User user =new User("GoGo",21,new String[]{"内卷","吃饭"});  //将创建的对象放入文档中  request.doc(JSONValue.toJSONString(user),XContentType.JSON);
  UpdateResponse updateResponse=restHighLevelClient.update(request,RequestOptions.DEFAULT);  System.out.println(updateResponse.status());//更新成功返回OK}

删除文档:

@Testvoid testDeleteUser() throws IOException {  //创建删除请求,指定要删除的索引与文档ID  DeleteRequest request=new DeleteRequest("ljx666","6");
  DeleteResponse updateResponse=restHighLevelClient.delete(request,RequestOptions.DEFAULT);  System.out.println(updateResponse.status());//删除成功返回OK,没有找到返回NOT_FOUND}

3.批量CRUD数据

这里只列出了批量插入数据,其他与此类似。

注意:hasFailures()方法是返回是否失败,即它的值为false时说明上传成功。

@Testvoid testBulkAddUser() throws IOException {  BulkRequest bulkRequest=new BulkRequest();  //设置超时  bulkRequest.timeout("10s");
  ArrayList<User> list=new ArrayList<>();  list.add(new User("Java",25,new String[]{"内卷"}));  list.add(new User("Go",18,new String[]{"内卷"}));  list.add(new User("C",30,new String[]{"内卷"}));  list.add(new User("C++",26,new String[]{"内卷"}));  list.add(new User("Python",20,new String[]{"内卷"}));
  int id=1;  //批量处理请求  for (User u :list){    //不设置id会生成随机id    bulkRequest.add(new IndexRequest("ljx666")        .id(""+(id++))        .source(JSONValue.toJSONString(u),XContentType.JSON));  }
  BulkResponse bulkResponse=restHighLevelClient.bulk(bulkRequest,RequestOptions.DEFAULT);  System.out.println(bulkResponse.hasFailures());//是否执行失败,false为执行成功}

4.查询所有、模糊查询、分页查询、排序、高亮显示

@Testvoid testSearch() throws IOException {  SearchRequest searchRequest=new SearchRequest("ljx666");//里面可以放多个索引  SearchSourceBuilder sourceBuilder=new SearchSourceBuilder();//构造搜索条件
  //此处可以使用QueryBuilders工具类中的方法  //1.查询所有  sourceBuilder.query(QueryBuilders.matchAllQuery());  //2.查询name中含有Java的  sourceBuilder.query(QueryBuilders.multiMatchQuery("java","name"));  //3.分页查询  sourceBuilder.from(0).size(5);
  //4.按照score正序排列  //sourceBuilder.sort(SortBuilders.scoreSort().order(SortOrder.ASC));  //5.按照id倒序排列(score会失效返回NaN)  //sourceBuilder.sort(SortBuilders.fieldSort("_id").order(SortOrder.DESC));
  //6.给指定字段加上指定高亮样式  HighlightBuilder highlightBuilder=new HighlightBuilder();  highlightBuilder.field("name").preTags("<span style='color:red;'>").postTags("</span>");  sourceBuilder.highlighter(highlightBuilder);
  searchRequest.source(sourceBuilder);  SearchResponse searchResponse=restHighLevelClient.search(searchRequest,RequestOptions.DEFAULT);
  //获取总条数  System.out.println(searchResponse.getHits().getTotalHits().value);  //输出结果数据(如果不设置返回条数,大于10条默认只返回10条)  SearchHit[] hits=searchResponse.getHits().getHits();  for(SearchHit hit :hits){    System.out.println("分数:"+hit.getScore());    Map<String,Object> source=hit.getSourceAsMap();    System.out.println("index->"+hit.getIndex());    System.out.println("id->"+hit.getId());    for(Map.Entry<String,Object> s:source.entrySet()){      System.out.println(s.getKey()+"--"+s.getValue());    }  }}

# 总结

1.大致流程

创建对应的请求 --> 设置请求(添加规则,添加数据等) --> 执行对应的方法(传入请求,默认请求选项)–> 接收响应结果(执行方法返回值)–> 输出响应结果中需要的数据(source,status等)

 

2.注意事项

  • 如果不指定id,会自动生成一个随机id

  • 正常情况下,不应该这样使用new IndexRequest(“ljx777”),如果索引发生改变了,那么代码都需要修改,可以定义一个枚举类或者一个专门存放常量的类,将变量用final static等进行修饰,并指定索引值。其他地方引用该常量即可,需要修改也只需修改该类即可。

  • elasticsearch相关的东西,版本都必须一致,不然会报错

  • elasticsearch很消耗内存,建议在内存较大的服务器上运行elasticsearch,否则会因为内存不足导致elasticsearch自动killed

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/590.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

使用 MATLAB 和 C/C++ 生成 GPS L1 C/A 伪随机噪声 (PRN) 代码

function CACode = GpsCaCodePRN(sv)NUM_CODES = 37; %reserving 37 satellitesSR_LEN = 20;CA_PERIOD = 1023

3-如何创建等比数列?【视频版】

目录 问题视频解答 问题 视频解答 点击观看&#xff1a; 3-如何创建等差数列&#xff1f;

利用SQL注入漏洞登录后台

所谓SQL注入&#xff0c;就是通过把SQL命令插入到Web表单递交或输入域名或页面请求的查询字符串&#xff0c;最终达到欺骗服务器执行恶意的SQL命令&#xff0c;比如先前的很多影视网站泄露VIP会员密码大多就是通过WEB表单递交查询字符暴出的&#xff0c;这类表单特别容易受到SQ…

(二)WPF - 应用程序

一、运行程序的过程&#xff1a; &#xff08;1&#xff09; Application 对象被构造出来。&#xff08;2&#xff09;Run方法被调用。&#xff08;3&#xff09;Application.Startup 事件被触发&#xff08;4&#xff09;用户代码构造一个或多个 Window 对象。&#xff08;5&…

Finalshell安全吗?Xshell怎么样?

文章目录 一、我的常用ssh连接工具二、Xshell2.1 下载&#xff1a;认准官网2.2 Xshell 配置2.3 Xftp和WinSCP 一、我的常用ssh连接工具 之前讲过&#xff1a; 【服务器】远程连接选SSH&#xff08;PUTTY、Finalshell、WinSCP&#xff09; 还是 远程桌面&#xff08;RDP、VNC、…

使用POI将excel文件导入到数据库

概要 随着时代变化&#xff0c;有的需求也会越来越多&#xff0c;例如&#xff1a;有的文件上千条数据需要导入数据库不可能手动一条条导入吧&#xff1f;太浪费时间了&#xff01;所以需要编写程序让程序来导入 整体架构流程 我这里使用的是springbootmybatisMVC的项目架构…

ElasticSearch

title: ElasticSearch author: zed 一、引言 1.1 海量数据 在海量数据中执行搜索功能时&#xff0c;如果使用MySQL&#xff0c;效率太低。 1.2 全文检索 在海量数据中执行全文搜索时&#xff0c;如果使用MySQL&#xff0c;效率太低。 1.3 高亮显示 将搜索关键字&#xff0c;以…

深度解读 Android 14 重要的 8 个新特性~

一年一度的 Android 升级永不缺席&#xff0c;今年的代号叫 Upside Down Cake&#xff0c;倒置蛋糕&#xff0c;简称 U&#xff0c;对外版本为 Android 14。 一般来说&#xff0c;升级任务分为 ROM 角度和 App 角度&#xff0c;前者比较关心系统内部实现的变化&#xff0c;后者…

Mac电脑硬件/软件运行状况查看工具

iStat Menus是一款系统监控和管理工具&#xff0c;旨在帮助Mac用户实时监控电脑的各项硬件和软件信息。它以直观和定制化的方式提供了丰富的系统状态指标&#xff0c;让用户能够全面了解和管理自己的Mac电脑。 iStat Menus提供了一系列的菜单栏指示项目&#xff0c;可以显示诸如…

【MySQL】不就是子查询

前言 今天我们来学习多表查询的下一个模块——子查询&#xff0c;子查询包括了标量子查询、列子查询、行子查询、表子查询&#xff0c;话不多说我们开始学习。 目录 前言 目录 一、子查询 1. 子查询的概念 2. 子查询语法格式 2.1 根据子查询结果不同可以分为&#xff1a;…

vscode修改markdown侧边预览pdf字体等设置

文章目录 1.按CtrlShiftP打开命令窗口2.在命令窗口出输入Markdown Preview Enhanced: Customize Css&#xff0c;打开style.less文件 1.按CtrlShiftP打开命令窗口 2.在命令窗口出输入Markdown Preview Enhanced: Customize Css&#xff0c;打开style.less文件 然后在文件内加…

群晖 NAS WebDAV服务手机ES文件浏览器远程访问

文章目录 1. 安装启用WebDAV2. 安装cpolar3. 配置公网访问地址4. 公网测试连接5. 固定连接公网地址6. 使用固定地址测试连接 转载自cpolar极点云文章&#xff1a;群晖NAS搭建WebDAV服务手机ES文件浏览器远程访问 有时候我们想通过移动设备访问群晖NAS 中的文件,以满足特殊需求,…