- If i have gotten it correctly each java process is associated with a separate instance of JVM and each instance of JVM is provided with a Heap memory by the OS which is also recollected by the OS on JVM termination.
So on termination even if there were some memory leaks all the memory will be reclaimed by the OS(Please correct if I have mistaken)
. - In case point number 1 is true why do we have to use shutdown hooks. After googling everything mainly suggests to free all the resources and graceful shutdown.
Even if it does not gracefully shutdown all the memory and resources would be freed?
- I wrote a simple shutdown hook. In my main thread I am running an infinite loop and then terminating the process using terminate button in
Eclipse
. But the shutdown hook thread is not running. Does terminating process in eclipse callRuntime.getRuntime().halt(status)
because AFAIK that terminated JVM abruptly and not execute shutdown hook? Lastly if I have my main code something like below -
public static void main(String args[]){ Runtime.getRuntime().addShutdownHook(new Thread(new ShutDownHook())); System.out.println("Shutdown hook registered"); System.out.println("Before calling exit"); System.exit(0); System.out.println("After exit"); }
why is
After exit
not printed? When shutdown hook is in execution main thread must continue further execution and printAfter exit
?
Queries regarding Shutdown hook
1.8k Views Asked by Aniket Thakur At
1
1) You are correct.
2) The Java process' memory will be reclaimed, but you might want to do other cleanup, like delete some temp files.
3) Let's go to the javadoc of
Runtime#addShutdownHook(Thread)
You would have to look into Eclipse's source code, but it would seem like Eclipse terminates the process rather than sending a
System.exit(..)
or a sending a user interrupt. This probably goes over the JVM which therefore doesn't execute the shutdown hooks.4) The shutdown hooks you add with
Runtime#addShutdownHook(Thread)
are added to astatic
IdentityHashMap
in theApplicationShutdownHooks
. This class registers its own shutdown hook with theShutdown
class in astatic
initializer block shown belowThe
runHooks()
method isSo the current thread joins all the other ones.
When
gets called, somewhere down the line
Shutdown.sequence()
gets called which invokesShutdown.hooks()
implemented asOne of the
Runnable
objects inhooks
is what I described above. It doesn't spawn a newThread
, it does it concurrently withrun()
.Once
Shutdown.sequence()
is done, the system really exits, so the finalSystem.out.println()
doesn't execute.