ElasticsearchHealthIndicator发生了什么?

时间:2015-08-11 23:22:50

标签: elasticsearch spring-boot

我正在考虑在Spring中为弹性搜索实现运行状况检查。所有在线资源都表明应该有一个ElasticsearchHealthIndicator课程,但我找不到使用它。相关的Maven依赖是

spring-context-support

此特定课程是否已从public class OptionVM { public string Text { get; set; } public bool IsSelected { get; set; } public string Answer { get; set; } .... // other properties } 退出?是否已将其移至另一个Maven包中?

1 个答案:

答案 0 :(得分:0)

获取ElasticsearchHealthIndicator的正确Maven依赖关系如下。

<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-actuator</artifactId>
  <version>1.2.5.RELEASE</version>
</dependency>