Search code examples
javaweb-applicationsshutdown

shutdown hook for java web application


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?


Solution

  • 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>