以前从未用过 Runtime.addShutdownHook(Thread), 也不知道什么是 shutdown hook.
最近刚刚接触了一点,总结一下。
根据 Java API, 所谓 shutdown hook 就是已经初始化但尚未开始执行的线程对象。在
Runtime 注册后,如果 jvm 要停止前,这些 shutdown hook 便开始执行。
有什么用呢?就是在你的程序结束前,执行一些清理工作,尤其是没有用户界面的程序。
很明显,这些 shutdown hook 都是些线程对象,因此,你的清理工作要写在 run() 里。
根据 Java API,你的清理工作不能太重了,要尽快结束。但仍然可以对数据库进行操作。
举例如下:
packagejohn2;
/**
* test shutdown hook
* All rights released and correctness not guaranteed.
*/
publicclassShutdownHookimplementsRunnable{
publicShutdownHook() {
// register a shutdown hook for this class.
// a shutdown hook is an initialzed but not started thread, which will get up and run
// when the JVM is about to exit. this is used for short clean up tasks.
Runtime.getRuntime().addShutdownHook(newThread(this));
System.out.println(">>> shutdown hook registered");
}
// this method will be executed of course, since it's a Runnable.
// tasks should not be light and short, accessing database is alright though.
publicvoidrun() {
System.out.println("/n>>> About to execute: " ShutdownHook.class.getName() ".run() to clean up before JVM exits.");
this.cleanUp();
System.out.println(">>> Finished execution: " ShutdownHook.class.getName() ".run()");
}
// (-: a very simple task to execute
**voidcleanUp() {
for(inti=0; i < 7; i) {
System.out.println(i);
}
}
/**
* there're couple of cases that JVM will exit, according to the Java api doc.
* typically:
* 1. method called: System.exit(int)
* 2. ctrl-C pressed on the console.
* 3. the last non-daemon thread exits.
* 4. user logoff or system shutdown.
* @param args
*/
publicstaticvoidmain(String[] args) {
newShutdownHook();
System.out.println(">>> Sleeping for 5 seconds, try ctrl-C now if you like.");
try{
Thread.sleep(5000); // (-: give u the time to try ctrl-C
}catch(InterruptedExceptionie) {
ie.printStackTrace();
}
System.out.println(">>> Slept for 10 seconds and the main thread exited.");
}
}
如何使用Runtime.addShutdownHook
最新推荐文章于 2024-08-19 18:34:15 发布
192

被折叠的 条评论
为什么被折叠?



