No many words needed:

Is there a way in Java to handle a received SIGTERM?

link|improve this question

feedback

3 Answers

up vote 11 down vote accepted

Yes, you can register a shutdown hook with Runtime.addShutdownHook().

link|improve this answer
Thanks. Exactly what I was searching for. – Martijn Courteaux Jun 4 '10 at 14:58
feedback

You could add a shutdown hook to do any cleanup.

link|improve this answer
feedback

Another way to handle signals in Java is via the sun.misc.signal package. Refer to http://www.ibm.com/developerworks/java/library/i-signalhandling/ for understanding how to use it.

NOTE: The functionality being within sun.* package would also mean that it may not be portable/behave-the-same across all OS(s). But you may want to try it out.

link|improve this answer
But in fact, it does the same? – Martijn Courteaux Jun 7 '10 at 9:39
Nope - not exactly. The signal handling API I mentioned can be used to handle most of the Native OS signals (trap, intr, kill, etc) within Java Apps. On the other hand ShutdownHook gets invoked only when JVM is finally terminating (after a kill signal is received). – arcamax Jun 14 '10 at 8:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.