Is it possible to list all my configured rest-endpoints with spring boot? The actuator lists all existing paths on startup, I want something similar for my custom services,
What about using RequestMappingHandlerMapping that hold all endpoints information.
RequestMappingHandlerMapping
See my answer at How to access all available routes of a REST API from a controller?.