本番対応機能を有効にする

spring-boot-actuator [GitHub] (英語) モジュールは、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'
}