Signal handling using “TERM”

Update May 2012 (2 and half years later)

Trejkaz comments:

On current versions of Java this signal handling code fails because the “INT” signal is “reserved by the VM or the OS”.
Additionally, none of the other valid signal names actually fire when something requests the application to close (I just painstakingly tested all of the ones I could find out about…)
The shutdown hook mostly works but we find that in our case it isn’t firing, so the next step is obviously to resort to registering a handler behind the JVM’s back

The chapter “Integrating Signal and Exception Handling” of the “Troubleshooting Guide for HotSpot VM” mentions the signals “SIGTERM, SIGINT, SIGHUP” only for Solaris OS and Linux.
Only Exception Handling on Windows are mentioned.


Original answer (Sept 2009)

a ShutdownHook should be able to handle that case

Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() {
    public void run() {
        // what you want to do
    }
}));

(with caveats)
See also:

as an illustration of simple signal handling:

public class Aaarggh {
  public static void main(String[] args) throws Exception {
    Signal.handle(new Signal("INT"), new SignalHandler () {
      public void handle(Signal sig) {
        System.out.println(
          "Aaarggh, a user is trying to interrupt me!!");
        System.out.println(
          "(throw garlic at user, say `shoo, go away')");
      }
    });
    for(int i=0; i<100; i++) {
      Thread.sleep(1000);
      System.out.print('.');
    }
  }
}

Leave a Comment