1.

How to enable Actuator in Spring boot application?

Answer»

To ENABLE the spring actuator feature, we NEED to add the DEPENDENCY of “spring-boot-starter-actuator” in pom.xml.

<dependency&GT;<groupId> org.springframework.boot</groupId><artifactId> spring-boot-starter-actuator </artifactId></dependency>


Discussion

No Comment Found