春季3预定任务运行3次

时间:2010-09-08 22:11:53

标签: spring scheduled-tasks

我有一个非常简单的方法,计划每10秒运行一次:

@Component
public class SimpleTask {

    @Scheduled(fixedRate=10000)
    public void first() {
        System.out.println("Simple Task  " + new Date());
    }
}

配置:

<task:annotation-driven executor="myExecutor" scheduler="myScheduler" />
<task:executor id="myExecutor" pool-size="5"  /> 
<task:scheduler id="myScheduler" pool-size="10"  />

我的问题是我的方法每10秒调用3次。它应该只被调用一次。我究竟做错了什么? 我将Spring Source ToolSuite与SpringSource tc Server 6一起使用。

3 个答案:

答案 0 :(得分:22)

我有同样的问题。其中一个原因是Spring 3.0.0中的一个错误。我升级到3.0.5,重复次数只有两次。

另一个原因是因为我的具有@Scheduled方法的类被实例化了两次。发生这种情况是因为上下文配置被加载了两次。在web.xml中,我将ContextLoaderListener和DispatcherServlet指向相同的上下文配置文件:

...
<listener>
  <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

<servlet>
<servlet-name>spring</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
  <param-name>contextConfigLocation</param-name>
  <param-value>/WEB-INF/applicationContext.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
...

WEB-INF / applicationContext.xml是ContextLoaderListener的默认上下文配置。因此,请确保ContextLoaderListener和ServletDispatcher使用不同的上下文文件。我最终创建了一个没有任何bean定义的/WEB-INF/spring-servlet.xml,它运行得很完美。

答案 1 :(得分:2)

您正在将注释与配置混合,我不相信您需要两者

http://static.springsource.org/spring/docs/current/spring-framework-reference/html/scheduling.html#scheduling-task-namespace

来自文档

注意 确保您没有在运行时初始化同一个@Scheduled注释类的多个实例,除非您确实要为每个此类实例安排回调。与此相关,请确保不要对使用@Scheduled注释并使用容器注册为常规Spring bean的bean类使用@Configurable:否则将获得双初始化,一次通过容器,一次通过@Configurable方面,每个@Scheduled方法的结果被调用两次。

答案 2 :(得分:1)

可能是你多次加载applicationContext?