weixin_42505690 2013-07-01 18:58
浏览 2396
已采纳

Spring 3.2.3 使用 @Scheduled 注解的定时任务没有生效

用 Maven 构建的 Spring 3.2.3,尝试使用 @Scheduled 做定时任务,没有生效,但也未报任何错误。

环境:

pom.xml

xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4.0.0
com.test
xyz
war
0.0.1-SNAPSHOT
xyz
http://maven.apache.org


org.springframework
spring-core
3.2.3.RELEASE


org.springframework
spring-beans
3.2.3.RELEASE


org.springframework
spring-context
3.2.3.RELEASE


org.springframework
spring-aop
3.2.3.RELEASE


org.springframework
spring-aspects
3.2.3.RELEASE


org.springframework
spring-web
3.2.3.RELEASE


log4j
log4j
1.2.17


applicationContext.xml

<?xml version="1.0" encoding="UTF-8"?>
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:task="http://www.springframework.org/schema/task"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.2.xsd"
default-autowire="byName" default-lazy-init="true">

<context:component-scan base-package="com.test" />
<task:annotation-driven />

测试任务

package com.test.task;
import java.util.Date;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;

@Component
public class MyTask {

@Scheduled(cron = "0/5 * * * * ?")
public void doSth() {
    System.out.println(new Date());
}

}

但是,如果不使用 @Scheduled,用 标签则任务正常运行:


task:scheduled-tasks

/task:scheduled-tasks

求解?

  • 写回答

2条回答 默认 最新

  • jinnianshilongnian 2013-07-01 20:44
    关注

    怀疑 default-lazy-init="true" 惹得祸

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 SPSS分类模型实训题步骤
  • ¥15 求解决扩散模型代码问题
  • ¥15 工创大赛太阳能电动车项目零基础要学什么
  • ¥20 limma多组间分析最终p值只有一个
  • ¥15 nopCommerce开发问题
  • ¥15 torch.multiprocessing.spawn.ProcessExitedException: process 1 terminated with signal SIGKILL
  • ¥15 QuartusⅡ15.0编译项目后,output_files中的.jdi、.sld、.sof不更新怎么解决
  • ¥15 pycharm输出和导师的一样,但是标红
  • ¥15 想问问富文本拿到的html怎么转成docx的
  • ¥15 我看了您的文章,遇到了个问题。