Gracefully shutting down embedded servlet container
Is it a good idea to expose an endpoint via spring boot actuator (e.g. /shutdown) and destroy the application context and all registered beans in the Web Application?
I’m currently shutting down my service using a custom class that implements Applica...