dadoonet
(David Pilato)
July 12, 2017, 9:03am
6
I'm afraid I don't have the answer. To me it's more something you should ask on the spring data mailing list.
BTW you are not alone:
i'm new to es,it errors when i start up my app with springboot .here are my settings:
[image]
@Bean
public Client client() throws Exception {
Settings esSettings = Settings.builder()
.put("cluster.name", EsClusterName)
.put("client.transport.sniff", true)
.build();
return new PreBuiltTransportClient(esSettings).addTransportAddresses(new InetSocketTransportAddress(InetAddress.getByName(EsHost), EsPort));
}
error msg:
org.springframework.beans.factory.BeanCreationException: Error creat…
I'm planning to play around Spring Data ES integration this summer but for now I have little experience with it (well almost no experience).
Anyway, thanks a lot for the full repository example. I know it's a lot of efforts doing so.