If you are using persistent disk stores, or distributed caching, care should be taken to shutdown ehcache.
Note that Hibernate automatically shuts down its ehcache CacheManager .
The recommended way to shutdown the Ehcache is:
Though not recommended, ehcache also lets you register a JVM shutdown hook.
Ehcache proivdes a ServletContextListener that shutsdown CacheManager. Use this when you want to shutdown ehcache automatically when the web application is shutdown.
To receive notification events, this class must be configured in the deployment descriptor for the web application.
To do so, add the following to web.xml in your web application:
<listener>
<listener-class>net.sf.ehcache.constructs.web.ShutdownListener</listener-class>
</listener>
Ehcache CacheManager can optionally register a shutdown hook.
To do so, set the system property net.sf.ehcache.enableShutdownHook=true .
This will shutdown the CacheManager when it detects the Virtual Machine shutting down and it is not already shut down.
Use the shutdown hook where:
Having said that, shutdown hooks are inherently dangerous. The JVM is shutting down, so sometimes things that can never be null are. Ehcache guards against as many of these as it can, but the shutdown hook should be the last option to use.
The shutdown hook is on CacheManager. It simply calls the shutdown method.
The sequence of events is:
Each Cache will:
The shutdown hook runs when:
The shutdown hook will not run when:
If ehcache is shutdown dirty then any persistent disk stores will be corrupted. They will be deleted, with a log message, on the next startup.
Replications waiting to happen to other nodes in a distributed cache will also not get written.