Spring Boot Actuator: custom endpoint with MVC layer on top of it
Spring Boot Actuator endpoints allow you to monitor and interact with your application. Spring Boot includes a number of built-in endpoints and you can also add your own. Adding custom endpoints is as easy as creating a class that extends from org.springframework.boot.actuate.endpoint.AbstractEndpoint . But Spring Boot Actuator offers also possibility to decorate endpoints with MVC layer.