Java关闭挂钩(shutdown hook)
当JVM正常或突然关闭时,关闭挂钩可用于执行清理资源或保存状态。 执行干净资源意味着关闭日志文件,发送一些警报或其他内容。 因此,如果要在JVM关闭之前执行某些代码,请使用关闭挂钩(shutdown hook)。
JVM什么时候关闭?
JVM在以下情况下关闭:
- 用户在命令提示符下按
ctrl + c
- 调用
System.exit(int)
方法 - 用户注销计算机。
- 用户关闭计算机等
addShutdownHook(Thread hook)方法Runtime
类的addShutdownHook()
方法用于向虚拟机注册线程。
语法如下:
public void addShutdownHook(Thread hook){}
可以通过调用静态工厂方法getRuntime()
来获取Runtime
类的对象。 例如:
Runtime r = Runtime.getRuntime();
工厂方法
返回类实例的方法称为工厂方法。
Shutdown Hook的简单示例
package com.zyiz; class MyThread extends Thread{ public void run(){ System.out.println("shut down hook task completed.."); } } public class TestShutdown1{ public static void main(String[] args)throws Exception { Runtime r=Runtime.getRuntime(); r.addShutdownHook(new MyThread()); System.out.println("Now main sleeping... press ctrl+c to exit"); try{Thread.sleep(3000);}catch (Exception e) {} } }
执行上面示例代码,得到以下结果:
Now main sleeping... press ctrl+c to exit shut down hook task completed.. Process finished with exit code 0
注意: 可以通过调用Runtime
类的halt(int)
方法来停止关闭序列。
使用匿名类的Shutdown Hook示例:
package com.zyiz; public class TestShutdown2{ public static void main(String[] args)throws Exception { Runtime r=Runtime.getRuntime(); r.addShutdownHook(new Thread(){ public void run(){ System.out.println("shut down hook task completed.."); } } ); System.out.println("Now main sleeping... press ctrl+c to exit"); try{Thread.sleep(3000);}catch (Exception e) {} } }
执行上面示例代码,得到以下结果:
Now main sleeping... press ctrl+c to exit shut down hook task completed.. Process finished with exit code 0
分类导航
- Java教程
- Vim教程
- Swing教程
- Spring教程
- Spring Web Services教程
- Spring MVC教程
- Spring JDBC教程
- Spring Cloud教程
- Spring Boot教程
- Spring Boot CLI教程
- Spring Batch教程
- Spring AOP教程
- PDFBox教程
- JSP教程
- JSF教程
- JPA教程
- Java面向对象设计
- Java设计模式
- Java虚拟机教程
- Java泛型教程
- Java正则表达式教程
- Java数据类型教程
- Java并发编程教程
- Java密码学教程
- Java多线程教程
- Java国际化(i18n)教程
- JavaFX教程
- Java9教程
关注微信小程序
扫描二维码
程序员编程王