52、启用生产就绪功能
spring-boot-actuator
模块提供了 Spring Boot 的所有生产就绪功能。启用这些功能的最简单方法是添加 spring-boot-starter-actuator
starter 到依赖中。
Actuator 的定义Actuator 是制造术语,指的是用于移动或控制某物的机械装置。Actuator 可以通过一个小的变化产生大量的运动。
要将 actuator 添加到基于 Maven 的项目,请添加以下 starter 依赖项:
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
</dependencies>
对于 Gradle,请使用以下声明:
dependencies {
compile("org.springframework.boot:spring-boot-starter-actuator")
}