InterviewSolution
Saved Bookmarks
| 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><groupId> org.springframework.boot</groupId><artifactId> spring-boot-starter-actuator </artifactId></dependency> |
|