Issue Description
Spring Boot expose /shutdown Endpoint to shutdown Application. Sentinel-Starter includes sentinel-transport-simple-http module and this module using SPI to trigger SimpleHttpCommandCenter.
After invoke /shutdown endpoint, the process will not exit because the ServerSocket created in SimpleHttpCommandCenter is alive.
So I can invoke CommandCenter#stop to shutdown ThreadPool if I can get CommandCenter instance.
Type: feature request
Describe what feature you want
The single CommandCenter in CommandCenterInitFunc maybe should be hold in some where.
So we can get it and invoke CommandCenter#stop at any time.