博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring的quartz定时器重复执行二次的问题解决
阅读量:6196 次
发布时间:2019-06-21

本文共 6258 字,大约阅读时间需要 20 分钟。

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
org.springframework.web.context.ContextLoaderListener
把定时器的配置单独写成一个配置文件,在web容器启动的时候只加载一次 这个问题在Spring的TimerTask定时器下也会出现,解决方法也是如此,希望对各位大侠有所帮助----------------------------------------------------------------------------------------------------------------------------参考以上。-----------------------------------------------------------spring-scheduler.xml:
doTask
web.xml..
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

 

转载于:https://www.cnblogs.com/alamps/p/6831131.html

你可能感兴趣的文章
强一致性hash实现java版本及强一致性hash原理
查看>>
Bzoj 3624: [Apio2008]免费道路 (贪心+生成树)
查看>>
2017/4/23星期日 总结
查看>>
算法前戏
查看>>
django+vue+nginx生产环境部署配置
查看>>
Linux磁盘与文件管理系统
查看>>
Data - 数据挖掘的基础概念
查看>>
POJ3487[稳定婚姻]
查看>>
Linux面试基础题-2
查看>>
html基础
查看>>
[SCOI2005]王室联邦
查看>>
转: ORACLE存储过程笔记3----流程控制
查看>>
基于MVC3.0的三层结构多项目分离框架的搭建
查看>>
第6件事 洞悉出题者背后的动机
查看>>
序言<EntityFramework6.0>
查看>>
sql之left join、right join、inner join的区别
查看>>
VMware Snapshot 工作原理
查看>>
mpvue搭建微信小程序
查看>>
将PHP作为Shell脚本语言使用
查看>>
USACO 1.2
查看>>