springboot 使用elasticsearch-rest-high-level-client操作 es

时间:2021-06-16 17:31:43   收藏:0   阅读:0

https://mp.weixin.qq.com/s/fgi6Xd1Xbs4RJSDGBRcZxQ

es7.x以上的版本引用了6.8的elasticsearch-rest-client包会出现java.lang.ClassNotFoundException: org.elasticsearch.client.Cancellable

需要将其exclude,引入7.x版本的。

implementation(‘org.elasticsearch.client:elasticsearch-rest-high-level-client:7.12.1‘) {
    exclude group: ‘org.elasticsearch.client‘, module: ‘elasticsearch-rest-client‘
}
implementation ‘org.elasticsearch:elasticsearch:7.12.1‘
implementation ‘org.elasticsearch.client:elasticsearch-rest-client:7.12.1‘

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!