Spring的quartz定时器同一时刻重复执行二次的问题解决最近用Spring的quartz定时器的时候,发现到时间后,任务总是重复执行两次,在tomcat或jboss下都如此。打印出他们的hashcode,发现是不一样的,也就是说,在web容器启动的时候,重复启了两个quartz线程。研究下来发现quartz确实会加载两次:第一次:web容器启动的时候,读取applicationContext.xml文件时,会加载一次。第二次:Spring本身会加载applicationContext.xml一次。而我的quartz配置就是写在applicationContext.xml文件里的。解决办法很简单先把quartz配置信息提取出来,单独存成一个文件,比如applicationContext-quartz.xml然后修改web.xml,让web容器启动时,可以加载该文件这样quartz只会在web容器启动时加载一次,Spring不会再加载了。 web.xml配置如下:contextConfigLocation /WEB-INF/classes/applicationContext.xml,/WEB-INF/classes/applicationContext-timertask.xml 把定时器的配置单独写成一个配置文件,在web容器启动的时候只加载一次 这个问题在Spring的TimerTask定时器下也会出现,解决方法也是如此,希望对各位大侠有所帮助----------------------------------------------------------------------------------------------------------------------------参考以上。-----------------------------------------------------------spring-scheduler.xml: org.springframework.web.context.ContextLoaderListener web.xml.. doTask security contextConfigLocation classpath*:/applicationContext.xml, classpath*:/applicationContext-shiro.xml, classpath*:/spring-scheduler.xml org.springframework.web.context.ContextLoaderListener org.springframework.web.context.request.RequestContextListener encodingFilter org.springframework.web.filter.CharacterEncodingFilter encoding UTF-8 forceEncoding true encodingFilter /* ParameterFilter com.xinwei.filter.ParameterFilter blackListURL /js/** /css/** /styles/** /images/** /plugins/** /fonts/** /login/timeout /logout /views/** whiteListURL /** ParameterFilter /* PageFilter com.xinwei.filter.PageFilter blackListURL whiteListURL /**/list PageFilter /* shiroFilter org.springframework.web.filter.DelegatingFilterProxy targetFilterLifecycle true shiroFilter /* springServlet org.springframework.web.servlet.DispatcherServlet contextConfigLocation classpath*:/spring-mvc.xml dispatchOptionsRequest true 1 springServlet / hessianServlet org.springframework.web.servlet.DispatcherServlet contextConfigLocation classpath:/server/hessian-server.xml 1 hessianServlet /hessian/* 30 java.lang.Throwable /WEB-INF/views/error/500.jsp 500 /WEB-INF/views/error/500.jsp 404 /WEB-INF/views/error/404.jsp 403 /WEB-INF/views/error/403.jsp