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

Popular posts from this blog

How to set Java Object into JaxBElement ?

GitLab