Google News
logo
Java Spring Boot - Interview Questions
How to enable Actuator in Spring boot application?
To enable the spring actuator feature, we need to add the dependency of “spring-boot-starter-actuator” in pom.xml.
 
<dependency>
  <groupId> org.springframework.boot</groupId>
  <artifactId> spring-boot-starter-actuator </artifactId>
</dependency>

 

Advertisement