我看到一些代码像这样使用 ShutdownHook
Runtime.getRuntime().addShutdownHook(new Thread(){
ConfigurableApplicationContext.stop();
//close spring context;
threadpool.shutdownnow();
//close theadpool
});
这样做有什么用吗?
我想
当jvm退出时,可能线程会立即关闭,spring上下文也会关闭;</p>
当我们需要调用 System.exit() 时,我们下一步该怎么做?