I need to save some data preferrably when the java web application is stopped, or when tomcat is stopped. how can this be done? Edit: any drawback if I use the jvm shutdown hook?
Use a class that implements ServletContextListener in your web.xml:
<web-app> <!-- Usual stuff here --> <listener> <listener-class>com.mycompany.MyClass</listener-class> </listener> </web-app>
2.1m questions
2.1m answers
60 comments
57.0k users