Spring Boot Starter Actuator Dependency

This page gives you a quick reference to get Spring Boot Starter Actuator dependency for Maven or Gradle projects. 


You can also download the Spring Boot Starter Actuator dependency, the link given at the "Download JAR File" section.

Spring Boot Starter Actuator dependency is a starter for using Spring Boot's Actuator which provides production-ready features to help you monitor and manage your application.

Spring Boot Starter Actuator Maven Dependency

Copy below maven dependency and paste in your project pom.xml file:
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

Spring Boot Starter Actuator Gradle Dependency

Copy below Gradle dependency and paste it into your project build.gradle file:
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-actuator'

Download JAR File

Check for Latest Release

References


Comments