Java中有没有办法处理收到的SIGTERM?
Answers:
是的,您可以向注册一个关闭挂钩Runtime.addShutdownHook()
。
您可以添加一个关闭挂钩来进行任何清理。
像这样:
public class myjava{
public static void main(String[] args){
Runtime.getRuntime().addShutdownHook(new Thread() {
@Override
public void run() {
System.out.println("Inside Add Shutdown Hook");
}
});
System.out.println("Shut Down Hook Attached.");
System.out.println(5/0); //Operating system sends SIGFPE to the JVM
//the JVM catches it and constructs a
//ArithmeticException class, and since you
//don't catch this with a try/catch, dumps
//it to screen and terminates. The shutdown
//hook is triggered, doing final cleanup.
}
}
然后运行它:
el@apollo:~$ javac myjava.java
el@apollo:~$ java myjava
Shut Down Hook Attached.
Exception in thread "main" java.lang.ArithmeticException: / by zero
at myjava.main(myjava.java:11)
Inside Add Shutdown Hook
处理Java中信号的另一种方法是通过sun.misc.signal包。请参阅http://www.ibm.com/developerworks/java/library/i-signalhandling/了解如何使用它。
注意:该功能位于sun。*软件包中,这也意味着它可能在所有操作系统上都不是可移植的/行为相同的。但是您可能想尝试一下。
System.exit(1)
在其他地方执行该钩子还会触发吗?我试图遵循这种模式来处理我的多线程Java程序的受控停止,但是我发现这System.exit(1)
并没有终止JVM。