|
@ -6,6 +6,7 @@ import org.springframework.context.annotation.Configuration;
|
|
|
import javax.annotation.PostConstruct;
|
|
|
|
|
|
/**
|
|
|
* Config - ES TransportClient 配置
|
|
|
* @author progr1mmer
|
|
|
* @date Created on 2018/1/4.
|
|
|
*/
|
|
@ -13,10 +14,18 @@ import javax.annotation.PostConstruct;
|
|
|
@Configuration
|
|
|
public class ElasticSearchConfig {
|
|
|
|
|
|
// 集群名称
|
|
|
/**
|
|
|
* 集群名称
|
|
|
*/
|
|
|
private String clusterName;
|
|
|
// 节点
|
|
|
/**
|
|
|
* 节点
|
|
|
*/
|
|
|
private String clusterNodes;
|
|
|
/**
|
|
|
* 是否开启嗅探
|
|
|
*/
|
|
|
private boolean clientTransportSniff;
|
|
|
|
|
|
public String getClusterName() {
|
|
|
return clusterName;
|
|
@ -34,11 +43,20 @@ public class ElasticSearchConfig {
|
|
|
this.clusterNodes = clusterNodes;
|
|
|
}
|
|
|
|
|
|
public boolean isClientTransportSniff() {
|
|
|
return clientTransportSniff;
|
|
|
}
|
|
|
|
|
|
public void setClientTransportSniff(boolean clientTransportSniff) {
|
|
|
this.clientTransportSniff = clientTransportSniff;
|
|
|
}
|
|
|
|
|
|
@PostConstruct
|
|
|
private void configInfo() {
|
|
|
StringBuilder info = new StringBuilder("{");
|
|
|
info.append("\n elasticsearch.cluster-name = " + clusterName);
|
|
|
info.append("\n elasticsearch.cluster-nodes = " + clusterNodes);
|
|
|
info.append("\n elasticsearch.client-transport-sniff = " + clientTransportSniff);
|
|
|
info.append("\n}");
|
|
|
System.out.println("Elasticsearch.configInfo : " + info.toString());
|
|
|
}
|