2

我使用@Scheduled注释使myProcess()Spring MVC 应用程序(在 Apache Tomcat/7.0.26 上运行的版本 3.0.6.RELEASE)中的函数每小时运行一次(3,600,000 毫秒 = 1 小时):

@Scheduled(fixedRate = 3600000)
public void myProcess() { ... }

该函数按预期执行,但不是在早上执行(请参阅下面最近 2 天的示例日志时间)。这每天都在发生。我在日志文件中没有发现异常。您对这种奇怪行为的原因有什么想法吗?


Feb 13 02:11:15
Feb 13 03:11:16 
Feb 13 06:17:34
Feb 13 06:45:55 
Feb 13 07:03:22
Feb 13 07:31:57
Feb 13 08:11:16 
Feb 13 09:11:18
Feb 13 10:11:18 
Feb 13 11:11:28 

Feb 14 01:11:37
Feb 14 02:11:29
Feb 14 03:11:29 
Feb 14 06:19:51
Feb 14 06:49:17
Feb 14 07:35:57
Feb 14 08:11:29
Feb 14 09:11:35
4

2 回答 2

2

我无法回答具体问题,我会尝试使用最新版本的 Spring (3.2),因为据我所知,在 3.0 和 3.1 之间已经在该领域实现了重大变化。

但是,根据我的经验,我发现 cronTrigger 在所有情况下都要好得多(它当然可以做所有 fixedRate 可以做的事情等等)

只需像这样定义您的属性:

<util:properties id="props" location=classpath:/application.properties" />
<context:property-placeholder properties-ref="props"  />
<task:annotation-driven />

然后使用它:

@Scheduled(cron = "${cron.expression}")
public void scheduledTask() throws .. { .. }

在 application.properties 你有类似的东西: cron.expression = 0 0/60 * * * ?

于 2013-02-15T08:43:03.853 回答
2

我有同样的问题,但使用cron属性:

// every day at midnight
@Scheduled(cron = "0 0 0 * * ?")
public void myProcess() {
}

我真的不记得它的行为了,但这不是我所期望的。我终于发现它可能取决于 Spring 3.0.x 中的一个错误。除了注释之外,我尝试的解决方案(并且有效)是在applicationContext.xml文件中声明任务:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:task="http://www.springframework.org/schema/task" xsi:schemaLocation="http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.0.xsd">

    ...

    <!-- scheduling and async -->
    <task:annotation-driven />
    <task:scheduled-tasks>
      <task:scheduled ref="myProcessHandler" method="myProcess" fixed-delay="0" />
    </task:scheduled-tasks>
    <bean id="myProcessHandler" class="path.to.MyProcessHandler" />

    ...

</beans>

即使该fixed-delay属性是修复错误所必需的(据我所知),也没有考虑到,而注释的cron属性是。@Scheduled

我希望这将有所帮助。

于 2013-02-15T08:49:41.840 回答