我们假设我们用java编写了一个简单的守护进程:
public class Hellow {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
while(true) {
// 1. do
// 2. some
// 3. important
// 4. job
// 5. sleep
}
}
}
我们使用start-stop-daemon
对其进行守护,默认情况下会在SIGTERM
上发送--stop
(TERM)信号
假设当前执行的步骤是#2。在这个时刻,我们正在发送TERM信号。
执行的是执行立即终止。
我发现我可以使用addShutdownHook()
来处理信号事件,但问题是它仍然会中断当前执行并将控制传递给处理程序:
public class Hellow {
private static boolean shutdownFlag = false;
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
registerShutdownHook();
try {
doProcessing();
} catch (InterruptedException ex) {
System.out.println(ex);
}
}
static private void doProcessing() throws InterruptedException {
int i = 0;
while(shutdownFlag == false) {
i++;
System.out.println("i:" + i);
if(i == 5) {
System.out.println("i is 5");
System.exit(1); // for testing
}
System.out.println("Hello"); // It doesn't print after System.exit(1);
Thread.sleep(1000);
}
}
static public void setShutdownProcess() {
shutdownFlag = true;
}
private static void registerShutdownHook() {
Runtime.getRuntime().addShutdownHook(new Thread() {
public void run() {
System.out.println("Tralala");
Hellow.setShutdownProcess();
}
});
}
}
所以,我的问题是 - 是否有可能不中断当前执行但在分离的线程(?)中处理TERM
信号,这样我就可以设置shutdown_flag = True
以便循环main
有机会优雅地停止吗?
答案 0 :(得分:2)
我重写了registerShutdownHook()
方法,现在它按照我想要的方式工作。
private static void registerShutdownHook() {
final Thread mainThread = Thread.currentThread();
Runtime.getRuntime().addShutdownHook(new Thread() {
public void run() {
try {
System.out.println("Tralala");
Hellow.setShutdownProcess();
mainThread.join();
} catch (InterruptedException ex) {
System.out.println(ex);
}
}
});
}
答案 1 :(得分:0)
您可以使用SignalHandler。请查看此示例:https://dumpz.org/2707213/
它将捕获INTERRUPTED
信号并取消设置operating
标记,这反过来将允许app优雅地关闭。