30.6.2 使用Spring Data连接Elasticsearch
spring.data.elasticsearch.properties.path.home=/foo/barspring.data.elasticsearch.cluster-nodes=localhost:9300@Component
public class MyBean {
private ElasticsearchTemplate template;
@Autowired
public MyBean(ElasticsearchTemplate template) {
this.template = template;
}
// ...
}Last updated
Was this helpful?