在生产环境中碰到一种怪异的问题,在停止tomcat时,运行shutdown.sh,看起来好像停掉了,但是后面还有程序在运行,网上查了下资料‘shutdown.sh后存在tomcat僵尸进程的原因是shutdown.sh后web应用没有去关闭其启用的后台线程,所以处理的办法是监听到tomcat关闭事件时,关闭掉其启用的后台线程。’
这时刚好想起在我们应用中使用了定时任务等功能,但是在shutdown时并没有关闭该任务;
因为项目使用spring,它已经提供了destroy-method=“”的功能,于是我们在spring配置文件中在需要的bean中加上了该功能,在web.xml中定义:
com.util.CustomedContextLoaderListener
监听器类:
public class CustomedContextLoaderListener extends ContextLoaderListener {
public void contextInitialized(ServletContextEvent event) {
System.out.println("开始加载---");
super.contextInitialized(event);
}
@Override
public void contextDestroyed(ServletContextEvent event) {
System.out.println("-------开始回收,这里就会调用bean里面定义了的destroy-close方法")
super.contextDestroyed(event);
}
}
这样在我们的定时任务bean中增加destroy-close方法,在里面shutdown掉定时任务;这样就可以通过tomact的shutdown.sh停掉服务了
转载