Skip to content

Instantly share code, notes, and snippets.

View starjasmine's full-sized avatar
😀
Good

hiok starjasmine

😀
Good
View GitHub Profile
@kiluange
kiluange / ElasticSearchConfiguration.java
Last active January 24, 2022 14:34
Spring boot and Elasticsearch 6.4.2 with x-pack security
import org.elasticsearch.client.transport.TransportClient;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.common.transport.TransportAddress;
import org.elasticsearch.transport.client.PreBuiltTransportClient;
import org.elasticsearch.xpack.core.XPackClientPlugin;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Primary;
import org.springframework.data.elasticsearch.core.ElasticsearchOperations;
import org.springframework.data.elasticsearch.core.ElasticsearchTemplate;