程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> 編碼-spring 定時任務不執行

編碼-spring 定時任務不執行

編輯:編程綜合問答
spring 定時任務不執行
 <?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
    xmlns:tx="http://www.springframework.org/schema/tx" xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:task="http://www.springframework.org/schema/task"
    xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
        http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.0.xsd"
        default-lazy-init="false">

    <context:annotation-config />
    <context:component-scan base-package="com.tc.mytask" />
    <!-- 開啟這個配置,spring才能識別@Scheduled注解 -->
    <task:annotation-driven />
</beans>
 package com.tc.mytask;

import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;

@Component
public class TaskJob {
    @Scheduled(cron="0/5 * *  * * ? ")
    public void job(){
        System.out.println("任務進行中。。。。");
    }
}

最佳回答:


看配置是沒有問題的;
或者你測試一下官方的這種方式:http://spring.io/guides/gs/scheduling-tasks/

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved