首先明确你的springboot版本.以下是对照图:
我是2.6.6的springboot,所以我是用了7.15.2版本的es。
其他的依赖建议模仿我复制粘贴进去。
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-core</artifactId>
<version>8.9.0</version>
</dependency>
<!--ES-->
<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch</artifactId>
<version>7.15.2</version>
</dependency>
<!--es客户端-->
<dependency>
<groupId>org.elasticsearch.client</groupId>
<artifactId>elasticsearch-rest-high-level-client</artifactId>
<version>7.15.2</version>
</dependency>
<!--处理es日志-->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.11.1</version>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-elasticsearch</artifactId>
<version>4.3.10</version>
</dependency>
<!--json转换-->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.12.5</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.75</version>
</dependency>
说一下遇到的坑:
1.lucene这个玩意启动的时候报错了,我利用8.9.0这个依赖强行注入了覆盖掉之前的低版本lucene,如果没有这个依赖会报错找不到一个lucene中util下的Accountable文件.
2.windows下,自己先本机先装一个es!下载地址搜一下吧,网上有。记得下载和你的springboot对应的版本!
3.装好了以后啥配置都先别动,用java代码试一下能不能连。
4.记得先去es的安装目录下的bin文件夹启动elasticsearch.bat文件
5.启动成功后,用我这个代码单元测试试一下。
6.如果报连接超时等异常,直接设置jvm的参数,就可以了!
这里是创造一个名为 “student” 的索引,里面没放东西,空索引。
@Test
public void test() throws IOException {
// 1.创建客户端对象,连接ES
RestHighLevelClient client = new RestHighLevelClient(RestClient
.builder(new HttpHost("127.0.0.1", 9200, "http")));
// 2.创建请求对象
CreateIndexRequest request = new CreateIndexRequest("student");
// 3.发送请求
CreateIndexResponse response = client.indices()
.create(request,RequestOptions.DEFAULT);
// 4.操作响应结果
System.out.println(response.index());
// 5.关闭客户端
client.close();
}
启动不成功则配置jvm:
-Xms1g -Xmx1g
根据自己电脑配置进行调整,总之太小或者不配置很容易就超时。
其他的es使用方法请在百度自行查找!