1

49. 启用生产就绪特性

spring-boot-actuator 模块提供了所有Spring Boot的生产就绪特性,启用这些特性的最简单方法是将spring-boot-starter-actuator依赖项添加到'Starter'中。

Actuator的定义

actuator是指用于移动或控制某物的机械装置的制造业术语,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")
}

下一篇:端点

博弈
2.5k 声望1.5k 粉丝

态度决定一切