在" Bootiful"使用Spring Boot Spring One 2014部分(https://www.youtube.com/watch?v=HCyYEVRZISk)的应用程序,Josh提到将Boot Actuator添加到Spring(非bootiful)应用程序很容易。我假设某种方式需要一个Actuator配置,但无法找到它应该如何完成。
答案 0 :(得分:0)
只需将启动器添加到您的pom.xml:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
...并且/health
等端点可用。