码迷,mamicode.com
首页 > 编程语言 > 详细

spring 定时器执行两次

时间:2014-06-01 10:45:52      阅读:291      评论:0      收藏:0      [点我收藏+]

标签:spring 异常   spring定时器执行多次   spring定时器异常   

spring错误笔记

spring定时器执行两次因为导入了两次



关于配置文件如下 
<bean id="timeTaskService" class="xx.xxx.xxx.xxx.service.impl.na.TimeTaskService"/>

<task:scheduled-tasks scheduler="myScheduler"><!--30秒执行一次 -->
<task:scheduled ref="timeTaskService" method="checkHeartBeat" cron="0/30 * * * * ?"/>
</task:scheduled-tasks>

<task:scheduler id="myScheduler"/>


对应的类有个定时执行检查的动作,但是动作中的日志每次输出两遍,一开始以为是log4j的输出导致的两条,找了半天没办法还是决定eclipse调试打印一下,输出竟然是两条,那么等于这个方法竟然执行了两次。
根绝网上提供的说法如果导入两次那么就可能出现这种情况,发现真的是因为导入了两次,因为在spring.xml中import中写的
<import resource="classpath*:config/**/spring*.xml"/>
而其他的包里面还包含了相同的spring.xml文件,且这个spring.xml还有这么一个导入<import resource="spring-job.xml" />
等于加载了不止一遍,上边导入的时候已经有了一个spring*.xml(可能也包含spring-job.xml了)而另一个又import了一次。


这个时候只要把spring.xml中import导入写成<import resource="classpath*:config/**/spring.xml"/>只导入spring.xml或者把另一个spring.xml中<import resource="spring-job.xml" />去掉即可。

spring 定时器执行两次,布布扣,bubuko.com

spring 定时器执行两次

标签:spring 异常   spring定时器执行多次   spring定时器异常   

原文地址:http://blog.csdn.net/ruishenh/article/details/27682105

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!