我正在我的一个bean中实现DisposableBean,以便在服务器关闭时得到通知。但是,从来不会调用destroy方法。
我在Spring 3上运行Tomcat。
有什么建议么?
最佳答案
使用ContextLoaderListener并覆盖contextDestroyed
方法。
不要忘记在ContextLoaderListener
中声明web.xml
。
我正在我的一个bean中实现DisposableBean,以便在服务器关闭时得到通知。但是,从来不会调用destroy方法。
我在Spring 3上运行Tomcat。
有什么建议么?
最佳答案
使用ContextLoaderListener并覆盖contextDestroyed
方法。
不要忘记在ContextLoaderListener
中声明web.xml
。