I have java application which shutdowns correctly when i use CTRL-C
, java application saves all data before shutdown. Now i trying to shutdown this java applica
A shutdown hook cannot be raised by another app.
The shutdown hook runs when:
System.exit()
is called, or
the last non-daemon thread exits.The shutdown hook will not run when: