import org.elasticsearch.common.xcontent.XContentBuilder;的依赖坐标
时间: 2023-12-02 18:02:34 浏览: 383
vite vue3 import.meta.glob动态路由
import org.elasticsearch.common.xcontent.XContentBuilder 这个类是 Elasticsearch 提供的一个便捷的方式来构建 JSON 格式的内容,其依赖坐标如下:
Maven:
```xml
<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch</artifactId>
<version>8.7.0</version>
</dependency>
```
Gradle:
```
implementation 'org.elasticsearch:elasticsearch:8.7.0'
```
需要注意的是,这个依赖坐标是 Elasticsearch 的整个 Java 客户端的依赖,如果只需要使用其中的某些模块,可以根据具体需求进行引入。
阅读全文