如何将Spring Boot Actuator添加到Spring应用程序中?

时间:2015-02-19 06:15:28

标签: spring spring-boot

在" Bootiful"使用Spring Boot Spring One 2014部分(https://www.youtube.com/watch?v=HCyYEVRZISk)的应用程序,Josh提到将Boot Actuator添加到Spring(非bootiful)应用程序很容易。我假设某种方式需要一个Actuator配置,但无法找到它应该如何完成。

1 个答案:

答案 0 :(得分:0)

只需将启动器添加到您的pom.xml:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

...并且/health等端点可用。