Enabling Production-ready Features
The spring-boot-actuator module provides all of Spring Boot’s production-ready features.
The recommended way to enable the features is to add a dependency on the spring-boot-starter-actuator starter.
To add the actuator to a Maven-based project, add the following starter dependency:
<dependencies>
	<dependency>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-actuator</artifactId>
	</dependency>
</dependencies>For Gradle, use the following declaration:
dependencies {
	implementation 'org.springframework.boot:spring-boot-starter-actuator'
}