Spring - Actuator
Actuator:
- It allows you to see inside the application.
- For Example, If you want to know which beans are created in spring application context and how the controllers are mapped.
Endpoints:
- /shutdown to kill spring boot application.
- /env list of properties
- /health health information
- /beans list of spring bean
- etc.,
Dependency:
<artifactId> spring-boot-starter-actuator </artifactId>
Comments
Post a Comment