Skip to content

Instantly share code, notes, and snippets.

@netodevel
Created March 23, 2020 01:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save netodevel/e479cb028447bdca2354c3625362b5d3 to your computer and use it in GitHub Desktop.
Save netodevel/e479cb028447bdca2354c3625362b5d3 to your computer and use it in GitHub Desktop.
import org.apache.http.HttpHost;
import org.elasticsearch.client.RestClient;
import org.elasticsearch.client.RestHighLevelClient;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class ElasticsearchConfig {
@Value("${elasticsearch.host}")
private String host;
@Value("${elasticsearch.port}")
private int port;
@Bean(destroyMethod = "close")
public RestHighLevelClient restClient() {
return new RestHighLevelClient(RestClient.builder(new HttpHost(host, port)));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment