RestHighLevelClient集成ES 7.X

Maven依赖

依赖版本号和elasticsearch版本号对应起来

		<dependency><groupId>org.elasticsearch.client</groupId><artifactId>elasticsearch-rest-client</artifactId><version>7.17.6</version></dependency><!-- elasticSearch --><dependency><groupId>org.elasticsearch.client</groupId><artifactId>elasticsearch-rest-high-level-client</artifactId><version>7.17.6</version></dependency><dependency><groupId>org.elasticsearch</groupId><artifactId>elasticsearch</artifactId><version>7.17.6</version><scope>compile</scope></dependency>

YML配置

spring:elasticsearch:rest:uris: http://127.0.0.1:9200,http://127.0.0.1:9201username: elasticpassword: ******

ElasticSearchConfig

集群带用户名密码


import org.apache.http.HttpHost;
import org.apache.http.auth.AuthScope;
import org.apache.http.auth.UsernamePasswordCredentials;
import org.apache.http.client.CredentialsProvider;
import org.apache.http.impl.client.BasicCredentialsProvider;
import org.elasticsearch.client.RestClient;
import org.elasticsearch.client.RestClientBuilder;
import org.elasticsearch.client.RestHighLevelClient;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;import java.util.Arrays;@Configuration
public class ElasticSearchConfig {@Value("${spring.elasticsearch.rest.uris}")private String[] uris;@Value("${spring.elasticsearch.rest.username}")private String userName;@Value("${spring.elasticsearch.rest.password}")private String passWord;@Beanpublic RestHighLevelClient restHighLevelClient() {HttpHost[] httpHosts = Arrays.stream(uris).map(HttpHost::create).toArray(HttpHost[]::new);RestClientBuilder builder = RestClient.builder(httpHosts);CredentialsProvider credentialsProvider = new BasicCredentialsProvider();credentialsProvider.setCredentials(AuthScope.ANY, new UsernamePasswordCredentials(userName, passWord));builder.setHttpClientConfigCallback(f -> f.setDefaultCredentialsProvider(credentialsProvider));return new RestHighLevelClient(builder);
}

集群无用户名密码


import org.apache.http.HttpHost;
import org.apache.http.auth.AuthScope;
import org.apache.http.auth.UsernamePasswordCredentials;
import org.apache.http.client.CredentialsProvider;
import org.apache.http.impl.client.BasicCredentialsProvider;
import org.elasticsearch.client.RestClient;
import org.elasticsearch.client.RestClientBuilder;
import org.elasticsearch.client.RestHighLevelClient;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;import java.util.Arrays;@Configuration
public class ElasticSearchConfig {@Value("${spring.elasticsearch.rest.uris}")private String[] uris;@Beanpublic RestHighLevelClient restHighLevelClient() {HttpHost[] httpHosts = Arrays.stream(uris).map(HttpHost::create).toArray(HttpHost[]::new);RestClientBuilder builder = RestClient.builder(httpHosts);return new RestHighLevelClient(builder);}}

实体类

@Data
public class CallingLog implements Serializable {private static final long serialVersionUID = 6211869625504817559L;private String id;private String index;private String type;private Date beginTime;private Date endTime;private String request;private String response;private String remark;private String callType;//调用类别
}

插入数据

import com.alibaba.fastjson.JSONObject;
import org.apache.poi.ss.formula.functions.T;
import org.elasticsearch.action.DocWriteRequest;
import org.elasticsearch.action.index.IndexRequest;
import org.elasticsearch.action.index.IndexResponse;
import org.elasticsearch.client.RequestOptions;
import org.elasticsearch.client.RestHighLevelClient;
import org.elasticsearch.core.TimeValue;
import org.elasticsearch.xcontent.XContentType;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;import java.lang.reflect.Field;
import java.util.Date;
@Component
public class EsClientUtils {private static final Logger logger = LoggerFactory.getLogger(EsClientUtils.class);/*** 默认超时时间*/private long timeOut = 1L;@Autowiredprivate RestHighLevelClient restHighLevelClient;private Class<? extends T> tClass;/*** 单条数据插入** @param t 放入的对象* @return 响应信息,放入es的基本信息(index、type、id)*/public IndexResponse add(CallingLog t) throws NoSuchFieldException {if (checkIndexTypeId(t)) {return null;}// 按actv_log_230713 格式生成索引String indexStr = DateUtils.formatDate(new Date(), "yyMMdd");String index = t.getIndex();String type = "_doc";String id = IdUtils.fastUUID();final String jsonString = JSONObject.toJSONString(t);final IndexRequest request = new IndexRequest(t.getIndex() + indexStr, type, id).source(jsonString, XContentType.JSON).opType(DocWriteRequest.OpType.CREATE).timeout(TimeValue.timeValueSeconds(timeOut));IndexResponse indexResponse = null;try {indexResponse = restHighLevelClient.index(request, RequestOptions.DEFAULT);} catch (Exception e) {logger.error("es(index:{},type:{},id:{})添加失败:", index, e);}return indexResponse;}/*** 检验必要的值** @param t 与es存储对应的对象* @return true不符合,false符合*/private boolean checkIndexTypeId(CallingLog t) {return t == null || t.getIndex() == null;}}

使用实例

EsClientUtils esClientUtils = ApplicationContextHelper.getBean(EsClientUtils.class);CallingLog callingLog = new CallingLog();callingLog.setIndex("actv_test");callingLog.setCallName("3333");callingLog.setRequest("7777");callingLog.setRemark("6666");callingLog.setBeginTime(new Date());callingLog.setEndTime(new Date());callingLog.setResponse("2222");callingLog.setServiceNum("3333333");esClientUtils.add(crmCallingLog);

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

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

相关文章

Python控制流程盘点及高级用法、神秘技巧大揭秘!

目录 一、条件语句&#xff08;If-Elif-Else&#xff09; 二、循环结构&#xff08;For和While&#xff09; 三、异常处理&#xff08;Try-Except&#xff09; 四、控制流程的高级用法&#xff01; 1. 列表解析 2. 生成器表达式 3. 装饰器 One More Thing&#xff01;&…

Microsoft 宣布今年底关闭开源软件托管平台 CodePlex

Microsoft 宣布&#xff0c;将关闭开源软件托管平台 CodePlex。Microsoft 2006 年推出这项服务&#xff0c;并决定在今年 12 月 15 日将其关闭。 Microsoft 公司副总裁 Brian Harry 在网上博客中写道&#xff0c;人们将可以下载他们的数据档案&#xff0c;Microsoft 正与面向开…

配电柜实时监测?这也太会省力了吧!

现代企业厂房的安全和效率对于业务的成功至关重要。在这个背景下&#xff0c;配电柜监控成为了一项关键的技术。通过实时监测和管理厂房内的配电柜&#xff0c;企业可以确保电力供应的稳定性&#xff0c;提高能源利用效率&#xff0c;并及时发现和解决潜在的故障和安全风险。 配…

【JS】动态添加的元素绑定点击事件在移动端不生效

问题&#xff1a;使用js动态添加的元素&#xff0c;给该元素绑定了点击事件&#xff0c;在PC端一切正常触发&#xff0c;但是在移动端却无法触发方法。 原因&#xff1a;在移动端,绑定点击事件需要注意使用 touch 事件,而不是鼠标的 click 事件。 常用的触摸事件有:- touchsta…

matlab学习指南(2):安装工具箱Toolbox的方法(详细图解)

&#x1f305;*&#x1f539;** φ(゜▽゜*)♪ **&#x1f539;*&#x1f305; 欢迎来到馒头侠的博客&#xff0c;该类目主要讲数学建模的知识&#xff0c;大家一起学习&#xff0c;联系最后的横幅&#xff01; 喜欢的朋友可以关注下&#xff0c;私信下次更新不迷路&#xff0…

Uniapp 版本更新

文章目录 前言Uniapp更新确定接口是否能够使用基本代码封装更新软件区别 前言 软件发布之后更新是经常出现的需求。我们希望软件能够自动连网更新软件&#xff0c;而不是重新去手动安装一个apk安装包。不需要更新的软件只有两个&#xff0c;一个是微信小程序&#xff0c;另一个…

openpnp - 汇川 Inovance IS620PS2R8I-IAB-C的参数读取

文章目录 openpnp - 汇川 Inovance IS620PS2R8I-IAB-C的参数读取概述笔记伺服和配套电机型号官方伺服调试软件笔记H00H01H02H03H04H05H06H07H08H09H0AH0BH0CH0DH0FH11H12H16H17H30H31自定义组备注END openpnp - 汇川 Inovance IS620PS2R8I-IAB-C的参数读取 概述 设备中用到了…

学习笔记——vscode界面设置界面缩放级别

使用vscode时&#xff0c;不知道按了什么快捷键&#xff0c;vscode窗口缩放了。 调整方法&#xff1a;设置 > 窗口(window) > Zoom Level

淘宝订单拉取更新历史状态~需求

&#x1f4da;目录 订单接口api需求问题解决 Map<String,TaobaoOrder> 订单接口api 可自行查询官网文档&#xff0c;点击进入 需求 通过接口中has_next 标识判断该时间断是否还有下一页数据,直到该值数据为false时,表面该时间范围内的订单数据获取完成. 拉取完成后需要对…

在Java开发中无法绕开的框架:SpringBoot

SpringBoot简介 SpringBoot是一个基于Spring框架的快速开发框架&#xff0c;它的出现极大地简化了Spring应用的开发流程。SpringBoot通过自动配置和约定大于配置的方式&#xff0c;让开发者可以快速搭建一个可运行的、独立的、生产级别的应用程序。 SpringBoot的优点不仅仅在…

typeScript(类篇)

介绍 传统的JavaScript程序使用函数和基于原型的继承来创建可重用的组件&#xff0c;但对于熟悉使用面向对象方式的程序员来讲就有些棘手&#xff0c;因为他们用的是基于类的继承并且对象是由类构建出来的。 从ECMAScript 2015&#xff0c;也就是ECMAScript 6开始&#xff0c;…

初阶C语言——指针

Hello&#xff0c;我们又见面了&#xff0c;时间过的好快啊&#xff0c;转眼间也已经写了这么多份博客了&#xff0c;在接下来的一年里&#xff0c;小编也会认真学习的敲代码&#xff0c;我们一起进步&#xff0c;那今天开始讲我们的指针&#xff0c;指针这一章节在C语言的学习…

前端高度汇总

方法说明 原生js jQuery 浏览器窗口可视区域高度 document.documentElement.clientHeight $(window).height() 浏览器窗口可视区域宽度 document.documentElement.clientWidth $(window).width() 文档高度 document.documentElement.scrollHeight $(document).heigh…

【K8S系列】深入解析K8S监控

序言 做一件事并不难&#xff0c;难的是在于坚持。坚持一下也不难&#xff0c;难的是坚持到底。 文章标记颜色说明&#xff1a; 黄色&#xff1a;重要标题红色&#xff1a;用来标记结论绿色&#xff1a;用来标记论点蓝色&#xff1a;用来标记论点 Kubernetes (k8s) 是一个容器编…

微服务实例构建成 docker 镜像实例

&#x1f388; 作者&#xff1a;Linux猿 &#x1f388; 简介&#xff1a;CSDN博客专家&#x1f3c6;&#xff0c;华为云享专家&#x1f3c6;&#xff0c;Linux、C/C、云计算、物联网、面试、刷题、算法尽管咨询我&#xff0c;关注我&#xff0c;有问题私聊&#xff01; &…

使用WiFi测量仪进行机器人定位的粒子过滤器研究(Matlab代码实现)

&#x1f4a5;&#x1f4a5;&#x1f49e;&#x1f49e;欢迎来到本博客❤️❤️&#x1f4a5;&#x1f4a5; &#x1f3c6;博主优势&#xff1a;&#x1f31e;&#x1f31e;&#x1f31e;博客内容尽量做到思维缜密&#xff0c;逻辑清晰&#xff0c;为了方便读者。 ⛳️座右铭&a…

PLSQL Developer怎样查看当前活动会话

点‘工具’-‘会话’&#xff1a; 选择‘Active sessions’: 点击某个会话&#xff0c;可以看到其对应的sql&#xff1a;

Flutter系列文章-Flutter环境搭建和Dart基础

Flutter是Google推出的一个开源的、高性能的移动应用开发框架&#xff0c;可以用一套代码库开发Android和iOS应用。Dart则是Flutter所使用的编程语言。让我们来看看如何搭建Flutter开发环境&#xff0c;并了解Dart语言的基础知识。 一、Flutter环境搭建 1. 安装Flutter SDK …

设计模式之模板模式

1. 模板模式介绍 1、模板模式即模板方法模式自定义了一个操作中的算法骨架&#xff0c;而将步骤延迟到子类中&#xff0c;使得子类可以不改变一个算法的结构&#xff0c;可以自定义该算法的某些特定步骤&#xff1b; 2、父类中提取了公共的部分代码&#xff0c;便于代码复用&am…

常用的DuiLib的消息类型

文章目录 1、常用的DuiLib的消息类型2、定义所有消息类型 1、常用的DuiLib的消息类型 DUI_MSGTYPE_WINDOWINIT&#xff1a; 窗口初始化消息&#xff0c;用于在窗口创建后执行初始化操作。DUI_MSGTYPE_WINDOWINIT是一个消息类型&#xff0c;用于在窗口初始化时发送消息。当窗口…