I am trying to understand when a shutdown hook executes. Is it before or after any part of my application has been stopped? Since my shutdown hook code will be running in a freshly created thread, can I access other non-shutdown-hook threads from it? Or they might be stopped/killed by the exiting JVM?
Of course I am assuming the the JVM is exiting due to an exception and not due to a unrecoverable crash which would not execute the shutdown hooks anyways.
From the Javadoc documentation of
Runtime#addShutdownHook
:From the first event, you shouldn't expect that threads are still alive when the shutdown hook is running (except for daemon threads).
From the same page:
When the program terminates due to an exception, all threads will eventually die, which will then the shutdown hook.