我正在我的一个bean中实现DisposableBean,以便在服务器关闭时得到通知。但是,从来不会调用destroy方法。

我在Spring 3上运行Tomcat。

有什么建议么?

最佳答案

使用ContextLoaderListener并覆盖contextDestroyed方法。

不要忘记在ContextLoaderListener中声明web.xml

09-11 08:56