目录
Java restApi
Springboot 集成es
新增-同步
新增-异步
增删改查流程
_bulk 批量操作
Java restApi
<dependency>
<groupId>org.elasticsearch.client</groupId>
<artifactId>elasticsearch-rest-high-level-client</artifactId>
<version>7.3.0</version>
<exclusions>
<exclusion>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch</artifactId>
<version>7.3.0</version>
</dependency>
Springboot 集成es
新增-同步
@Test
public void te2() throws IOException {
System.out.println(1);
IndexRequest ir = new IndexRequest("test");
ir.id("1");
Map<String,Object> map = new HashMap<>();
map.put("name","张三");
ir.source(map);
} |
新增-异步
增删改查流程
创建请求、2.执行、3.查看返回结果
_bulk 批量操作
ok文章来源:https://www.toymoban.com/news/detail-497818.html
持续更新文章来源地址https://www.toymoban.com/news/detail-497818.html
到了这里,关于es Elasticsearch 六 java api spirngboot 集成es的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!