談一談Spring中的定時任務(wù)

通常來說蜂挪,如果要執(zhí)行一個定時任務(wù)耐量,基本上的操作是這樣的:

public class Task3 {  
    public static void main(String[] args) {  
        Runnable runnable = new Runnable() {  
            public void run() {  
                // task to run goes here  
                System.out.println("Hello !!");  
            }  
        };  
        ScheduledExecutorService service = Executors  
                .newSingleThreadScheduledExecutor();  
        // 第二個參數(shù)為首次執(zhí)行的延時時間,第三個參數(shù)為定時執(zhí)行的間隔時間  
        service.scheduleAtFixedRate(runnable, 10, 1, TimeUnit.SECONDS);  
    }  
}  

這種情況要main方法中顯式的調(diào)用scheduleAtFixedRate方法才能運(yùn)行蛤虐。但是在Spring環(huán)境中或者Web環(huán)境中沒有main方法获印,或者沒有顯式的調(diào)用入口,該如何調(diào)用調(diào)用這個方法呢胆建?

1.使用InitializingBean烤低,當(dāng)類被初始化時scheduleAtFixedRate被顯式調(diào)用:

public class ScheduleTask  implements InitializingBean,Runnable{
    @Override
    public void run() {
        System.out.println(  new Date() +"任務(wù)執(zhí)行");
    }

    @Override
    public void afterPropertiesSet() throws Exception {

        ScheduledExecutorService service = Executors.newSingleThreadScheduledExecutor();
        // 第二個參數(shù)為首次執(zhí)行的延時時間,第三個參數(shù)為定時執(zhí)行的間隔時間
        service.scheduleAtFixedRate(this, 10, 1, TimeUnit.SECONDS);

    }
}

beans.xml:

<bean id="task"  class="com.alibaba.test.scheduling.ScheduleTask"/>

2. 使用 @Scheduled注解:

public class ScheduleTask{
    @Scheduled(fixedRate=1)
    public void run() {
        System.out.println(  new Date() +"任務(wù)執(zhí)行");
    }
}

XML配置:

<?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:p="http://www.springframework.org/schema/p"
    xmlns:sofa="http://schema.alipay.com/sofa/schema/service"
    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.xsd
         http://schema.alipay.com/sofa/schema/service http://schema.alipay.com/sofa/sofa-service-4-0-0.xsd
         http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task.xsd
         http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd"
    default-autowire="byName">
    <bean id="task"  class="com.alibaba.test.scheduling.ScheduleTask"/>
  <task:annotation-driven>
  </task:annotation-driven>
</beans>

當(dāng)然也可以指定定時任務(wù)線程池·笆载。

3.只使用使用XML配置:

public class ScheduleTask{

    public void run() {
        System.out.println(  new Date() +"任務(wù)執(zhí)行");
    }
}
<?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:p="http://www.springframework.org/schema/p"
    xmlns:sofa="http://schema.alipay.com/sofa/schema/service"
    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.xsd
         http://schema.alipay.com/sofa/schema/service http://schema.alipay.com/sofa/sofa-service-4-0-0.xsd
         http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task.xsd
         http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd"
    default-autowire="byName">
    <bean id="task"  class="com.alibaba.test.scheduling.ScheduleTask"/>
    <task:scheduler id="scheduler" pool-size="10"  />  <!--配置定時器-->
    <task:scheduled-tasks scheduler="scheduler">
        <task:scheduled ref="task" method="run" fixed-delay="1000" />
    </task:scheduled-tasks>
</beans>
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末扑馁,一起剝皮案震驚了整個濱河市涯呻,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌腻要,老刑警劉巖复罐,帶你破解...
    沈念sama閱讀 211,817評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異雄家,居然都是意外死亡市栗,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,329評論 3 385
  • 文/潘曉璐 我一進(jìn)店門咳短,熙熙樓的掌柜王于貴愁眉苦臉地迎上來填帽,“玉大人,你說我怎么就攤上這事咙好〈垭纾” “怎么了?”我有些...
    開封第一講書人閱讀 157,354評論 0 348
  • 文/不壞的土叔 我叫張陵勾效,是天一觀的道長嘹悼。 經(jīng)常有香客問我,道長层宫,這世上最難降的妖魔是什么杨伙? 我笑而不...
    開封第一講書人閱讀 56,498評論 1 284
  • 正文 為了忘掉前任,我火速辦了婚禮萌腿,結(jié)果婚禮上限匣,老公的妹妹穿的比我還像新娘。我一直安慰自己毁菱,他們只是感情好米死,可當(dāng)我...
    茶點故事閱讀 65,600評論 6 386
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著贮庞,像睡著了一般峦筒。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上窗慎,一...
    開封第一講書人閱讀 49,829評論 1 290
  • 那天物喷,我揣著相機(jī)與錄音,去河邊找鬼遮斥。 笑死峦失,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的伏伐。 我是一名探鬼主播宠进,決...
    沈念sama閱讀 38,979評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼藐翎!你這毒婦竟也來了材蹬?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,722評論 0 266
  • 序言:老撾萬榮一對情侶失蹤吝镣,失蹤者是張志新(化名)和其女友劉穎堤器,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體末贾,經(jīng)...
    沈念sama閱讀 44,189評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡闸溃,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,519評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了拱撵。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片辉川。...
    茶點故事閱讀 38,654評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖拴测,靈堂內(nèi)的尸體忽然破棺而出乓旗,到底是詐尸還是另有隱情,我是刑警寧澤集索,帶...
    沈念sama閱讀 34,329評論 4 330
  • 正文 年R本政府宣布屿愚,位于F島的核電站,受9級特大地震影響务荆,放射性物質(zhì)發(fā)生泄漏妆距。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,940評論 3 313
  • 文/蒙蒙 一函匕、第九天 我趴在偏房一處隱蔽的房頂上張望娱据。 院中可真熱鬧,春花似錦盅惜、人聲如沸吸耿。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,762評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽咽安。三九已至,卻和暖如春蓬推,著一層夾襖步出監(jiān)牢的瞬間妆棒,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,993評論 1 266
  • 我被黑心中介騙來泰國打工沸伏, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留糕珊,地道東北人。 一個月前我還...
    沈念sama閱讀 46,382評論 2 360
  • 正文 我出身青樓毅糟,卻偏偏與公主長得像红选,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子姆另,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,543評論 2 349

推薦閱讀更多精彩內(nèi)容