Spring Boot 参考指南(启用生产就绪的特性)

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")
}

下一篇:端点

    原文作者:博弈
    原文地址: https://segmentfault.com/a/1190000015083874
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞