es helper 介绍 | 学习笔记

简介: 快速学习 es helper 介绍

开发者学堂课程【ElasticSearch 入门精讲es helper 介绍学习笔记,与课程紧密连接,让用户快速学习知识。

课程地址https://developer.aliyun.com/learning/course/631/detail/9987


es helper 介绍


使用 Helper 方式新增索引

*/

@Test

public void testNewAddIndexHelperWay( throws l0Exception {

System. out.printIn("正式开始使用[使用 Helper 方式新增索引]了...;XContentBuilder xContentBuilder = XContentFactory. contentBuilder(XContentType.JSOM

.startObject()

.field( name: "name", value: "sqoop")

.field( name: "author", value: "小鱼儿”)

.field( name: "version", value: "2.1.1")

.endObject();IndexResponse response = client.preparelndex(INDEX, TYP).setSource(xContentBuilder).get();

System. outprintf("待新增的索引信息是: %s, es 集群反馈的结果是: %s%n" ',xContentBuilder,response.toString();

相关文章
|
8月前
|
安全 JavaScript 前端开发
ES6 中 let 与 const命令
ES6 中 let 与 const命令
|
8月前
报错/ ./node_modules/axios/lib/platform/index.js Module parse failed: Unexpected token (5:2)怎么解决?
报错/ ./node_modules/axios/lib/platform/index.js Module parse failed: Unexpected token (5:2)怎么解决?
|
8月前
Module build failed (from ./node_modules/eslint-loader/index.js)
Module build failed (from ./node_modules/eslint-loader/index.js)
206 0
Module build failed (from ./node_modules/eslint-loader/index.js)
|
8月前
|
JavaScript IDE 开发工具
es6学习笔记(一)let、const
es6学习笔记(一)let、const
【Error】This dependency was not found: * core-js/modules/es.error.cause.js in ./node_modules/@babel
【Error】This dependency was not found: * core-js/modules/es.error.cause.js in ./node_modules/@babel
|
资源调度 JavaScript Linux
Cannot find module ‘xxx\node_modules\yorkie\bin\install.js‘
Cannot find module ‘xxx\node_modules\yorkie\bin\install.js‘
123 0
ES6 从入门到精通 # 02:let 和 const 命令
ES6 从入门到精通 # 02:let 和 const 命令
87 0
ES6 从入门到精通 # 02:let 和 const 命令
|
JavaScript 前端开发 测试技术
CommonJS、AMD、CMD、ES6 Modules、ES Harmony
CommonJS、AMD、CMD、ES6 Modules、ES Harmony
167 0
CommonJS、AMD、CMD、ES6 Modules、ES Harmony
|
JavaScript API
Node.js v13.2.0 开始支持ES modules了
Node.js v13.2.0 开始支持ES modules了
579 0
Node.js v13.2.0 开始支持ES modules了
|
JSON API Apache
ES helper 介绍|学习笔记
快速学习 ES helper 介绍。
157 0