Я получаю сообщение об ошибке при создании приложения для весенней загрузки. Я использую ES, и ошибка приходит, пока jestClient вызывает метод execute. Ошибка:
Причина: org.springframework.beans.factory.BeanCreationException: Ошибка создания компонента с именем 'configService': сбой вызова метода init;Вложенное исключение - java.lang.NoSuchMethodError: io.searchbox.action.Action.getURI () Ljava / lang / String;
Ошибка возникает из метода выполнения jestHttpClient.class
public <T extends JestResult> T execute(Action<T> clientRequest, RequestConfig requestConfig) throws IOException {
HttpUriRequest request = this.prepareRequest(clientRequest, requestConfig);
CloseableHttpResponse response = null;
JestResult var5;
try {
response = this.executeRequest(request);
var5 = this.deserializeResponse(response, request, clientRequest);
} catch (HttpHostConnectException var14) {
throw new CouldNotConnectException(var14.getHost().toURI(), var14);
} finally {
if (response != null) {
try {
response.close();
} catch (IOException var13) {
log.error("Exception occurred while closing response stream.", var13);
}
}
}
return var5;
}