45. 开启production-ready特性

spring-boot-actuator模块提供Spring Boot所有的production-ready特性,启用该特性的最简单方式是添加spring-boot-starter-actuator ‘Starter’依赖。

执行器(Actuator)的定义:执行器是一个制造业术语,指的是用于移动或控制东西的一个机械装置,一个很小的改变就能让执行器产生大量的运动。

按以下配置为Maven项目添加执行器:

  1. <dependencies>
  2. <dependency>
  3. <groupId>org.springframework.boot</groupId>
  4. <artifactId>spring-boot-starter-actuator</artifactId>
  5. </dependency>
  6. </dependencies>

对于Gradle,使用下面的声明:

  1. dependencies {
  2. compile("org.springframework.boot:spring-boot-starter-actuator")
  3. }