ElasticSearch Rest style operation (three) combined with Springboot

ElasticSearch Rest style operation (three) combined with Springboot

Familiar with the official website

Official website address: https://www.elastic.co/cn/elasticsearch/Home
-> Below -> Find "Client" and
Insert picture description here
click to enter
Insert picture description here
Insert picture description here

Find native dependencies

<dependency>
    <groupId>org.elasticsearch.client</groupId>
    <artifactId>elasticsearch-rest-high-level-client</artifactId>
    <version>7.10.1</version>
</dependency>

Insert picture description here

Guess you like

Origin blog.csdn.net/Asia1752/article/details/111321184