spring-boot-actuator
模块提供了Spring Boot的全部生产环境功能。启用这些功能的最简单方法是添加一个到spring-boot-starter-actuator
“启动器”的依赖。
致动器(Actuator)的定义
致动器是制造业术语,指的是用于移动或控制某物的机械装置。致动器可以从一个小的变化中产生大量的运动。
要将致动器添加到基于Maven的项目中,请添加如下“启动器”依赖:
<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")
}