启用生产就绪功能

spring-boot-actuator 模块提供了所有 Spring Boot 的生产就绪功能。建议使用添加 spring-boot-starter-actuator “启动器” 依赖项的方式来启用这些功能。

执行器的定义

执行器是一个制造术语,指的是用于移动或控制某物的机械装置。执行器可以从微小的变化中产生大量的运动。

要将执行器添加到基于 Maven 的项目中,请添加以下“启动器”依赖项

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

对于 Gradle,请使用以下声明

dependencies {
	implementation 'org.springframework.boot:spring-boot-starter-actuator'
}