Elasticsearch Shield throws CreationException

312 Views Asked by At

I'm trying to set up a running service which uses Elasticsearch with Shield. However when I try to start the service I get the following error:

org.springframework.beans.factory.BeanCreationException: 
Could not autowire field: private java.util.List com.company.AppConfig.identConfigs; 
nested exception is org.springframework.beans.factory.BeanCreationException: 
Error creating bean with name 'demoident' defined in URL [file:C:/path/to/config/foo.xml]: 
Cannot resolve reference to bean 'bar_client' while setting bean property 'searchClients' 
with key [TypedStringValue: value [default], target type [null]]; 
nested exception is org.springframework.beans.factory.BeanCreationException: 
Error creating bean with name 'bar_client' defined in URL 
[file:C:/path/to/config/foo.xml]: Bean instantiation via constructor failed; 
nested exception is org.springframework.beans.BeanInstantiationException:
Failed to instantiate [com.company.ElasticSearchClient]: 
Constructor threw exception; nested exception is 
org.elasticsearch.common.inject.CreationException: Guice creation errors:

1) A binding to org.elasticsearch.shield.transport.filter.IPFilter was already configured 
    at _unknown_. at _unknown_

2) A binding to org.elasticsearch.shield.transport.ClientTransportFilter was already configured 
    at _unknown_. at _unknown_

3) A binding to org.elasticsearch.shield.ssl.ClientSSLService was already configured 
    at _unknown_. at _unknown_

4) A binding to org.elasticsearch.shield.ssl.ServerSSLService was already configured 
    at _unknown_. at _unknown_

4 errors
    at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:561)
    at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:88)
    at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:331)

(Sorry for the ugly formatting of stacktrace, feel free to edit for readability)

If I remove the Maven dependency for Elasticsearch Shield then the service starts as expected, without stacktraces, but obviously won't be able to execute any queries because of the exclusion of Shield.

Any help or input at all would be very appreciated.

Edit: I realized that the error is thrown by the Java client, not Elastic itself.

0

There are 0 best solutions below