java定時(shí)任務(wù)

方式一:基于注解@Scheduled實(shí)現(xiàn)簡單定時(shí)器

image.png

DemoApplication文件

package com.example.schedule.demo;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;

@SpringBootApplication
@ComponentScan(value = "com.example.schedule.schedule")
public class DemoApplication {

    public static void main(String[] args) {
        SpringApplication.run(DemoApplication.class, args);
    }

}

MySchedule文件

package com.example.schedule.schedule;

import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.Scheduled;

@EnableScheduling
@Configuration
public class MySchedule {

    @Scheduled(fixedRate = 3000)
    private void configureTasks1() {
        System.out.printf("xxxx");
    }

    @Scheduled(fixedRate = 6000)
    private void configureTasks2() {
        System.out.printf("xxxx");
    }
}

注解含義

 * @Scheduled(cron = "0/5 * * * * ?") //每隔5s執(zhí)行一次
 * @Scheduled(fixedDelay = 5000) //上一次執(zhí)行完畢時(shí)間點(diǎn)之后5秒再執(zhí)行
 * @Scheduled(fixedDelayString = "5000") //上一次執(zhí)行完畢時(shí)間點(diǎn)之后5秒再執(zhí)行
 * @Scheduled(fixedRate = 5000) //上一次開始執(zhí)行時(shí)間點(diǎn)之后5秒再執(zhí)行
 * @Scheduled(initialDelay=1000, fixedRate=5000) //第一次延遲1秒后執(zhí)行纱注,之后按fixedRate的規(guī)則每5秒執(zhí)行一次

方式二:基于接口SchedulingConfigurer的動(dòng)態(tài)定時(shí)任務(wù)


image.png
package com.example.schedule.schedule;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.Trigger;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.SchedulingConfigurer;
import org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler;
import org.springframework.scheduling.config.ScheduledTaskRegistrar;
import org.springframework.scheduling.support.CronTrigger;
import org.springframework.util.StringUtils;

import java.util.Arrays;
import java.util.List;
import java.util.concurrent.Executor;
import java.util.concurrent.Executors;
import java.util.concurrent.ThreadFactory;

@Configuration
@EnableScheduling
public class DynamicSchedule implements SchedulingConfigurer {


    /**
     * 測試數(shù)據(jù),實(shí)際可從數(shù)據(jù)庫獲取
     */
    private List<Task> tasks = Arrays.asList(
            new Task(1, "任務(wù)1", "*/3 * * * * *"),
//            new Task(2, "任務(wù)2", "*/3 * * * * *"),
//            new Task(3, "任務(wù)3", "*/3 * * * * *"),
//            new Task(4, "任務(wù)4", "*/3 * * * * *"),
//            new Task(5, "任務(wù)5", "*/3 * * * * *"),
//            new Task(6, "任務(wù)6", "*/3 * * * * *"),
//            new Task(7, "任務(wù)7", "*/3 * * * * *"),
//            new Task(8, "任務(wù)8", "*/3 * * * * *"),
//            new Task(9, "任務(wù)9", "*/3 * * * * *"),
            new Task(10, "任務(wù)10", "*/3 * * * * *")
    );

    @Override
    public void configureTasks(ScheduledTaskRegistrar scheduledTaskRegistrar) {
        scheduledTaskRegistrar.setScheduler(taskScheduler());

        tasks.forEach(task -> {
            //任務(wù)執(zhí)行線程
            Runnable runnable = () -> {
                System.out.println("execute task :" + task.getId());
                System.out.println(Thread.currentThread());
            };

            //任務(wù)觸發(fā)器
            Trigger trigger = triggerContext -> {
                //獲取定時(shí)觸發(fā)器,這里可以每次從數(shù)據(jù)庫獲取最新記錄,更新觸發(fā)器,實(shí)現(xiàn)定時(shí)間隔的動(dòng)態(tài)調(diào)整
                CronTrigger cronTrigger = new CronTrigger(task.getCron());
                return cronTrigger.nextExecutionTime(triggerContext);
            };

            //注冊任務(wù)
            scheduledTaskRegistrar.addTriggerTask(runnable, trigger);
        });

        //1
//        scheduledTaskRegistrar.addCronTask(new Runnable() {
//
//            @Override
//            public void run() {
//                log.warn(name+" --- > 開始");
//                //業(yè)務(wù)邏輯
//                log.warn(name+" --- > 結(jié)束");
//            }
//        }, cron);  //加入時(shí)間
    }

    /**
     * 設(shè)置TaskScheduler用于注冊計(jì)劃任務(wù)
     *
     * @return
     */
    @Bean
    public Executor taskScheduler() {
        ThreadPoolTaskScheduler t = new ThreadPoolTaskScheduler();
        t.setPoolSize(2);
        t.setThreadNamePrefix("taskScheduler - ");
        t.initialize();
        return t;
    }

    static class Task {
        /**
         * 主鍵ID
         */
        private int id;
        /**
         * 任務(wù)名稱
         */
        private String name;
        /**
         * cron表達(dá)式
         */
        private String cron;

        public Task(int id, String name, String cron) {
            this.id = id;
            this.name = name;
            this.cron = cron;
        }

        public int getId() {
            return id;
        }

        public void setId(int id) {
            this.id = id;
        }

        public String getName() {
            return name;
        }

        public void setName(String name) {
            this.name = name;
        }

        public String getCron() {
            return cron;
        }

        public void setCron(String cron) {
            this.cron = cron;
        }
    }
}

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末上炎,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌扎谎,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,968評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件烧董,死亡現(xiàn)場離奇詭異毁靶,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)逊移,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評論 2 382
  • 文/潘曉璐 我一進(jìn)店門预吆,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人胳泉,你說我怎么就攤上這事拐叉。” “怎么了扇商?”我有些...
    開封第一講書人閱讀 153,220評論 0 344
  • 文/不壞的土叔 我叫張陵凤瘦,是天一觀的道長。 經(jīng)常有香客問我案铺,道長蔬芥,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,416評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮笔诵,結(jié)果婚禮上返吻,老公的妹妹穿的比我還像新娘。我一直安慰自己乎婿,他們只是感情好测僵,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,425評論 5 374
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著次酌,像睡著了一般恨课。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上岳服,一...
    開封第一講書人閱讀 49,144評論 1 285
  • 那天剂公,我揣著相機(jī)與錄音,去河邊找鬼吊宋。 笑死纲辽,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的璃搜。 我是一名探鬼主播拖吼,決...
    沈念sama閱讀 38,432評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼这吻!你這毒婦竟也來了吊档?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,088評論 0 261
  • 序言:老撾萬榮一對情侶失蹤唾糯,失蹤者是張志新(化名)和其女友劉穎怠硼,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體移怯,經(jīng)...
    沈念sama閱讀 43,586評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡香璃,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,028評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了舟误。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片葡秒。...
    茶點(diǎn)故事閱讀 38,137評論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖嵌溢,靈堂內(nèi)的尸體忽然破棺而出眯牧,到底是詐尸還是另有隱情,我是刑警寧澤赖草,帶...
    沈念sama閱讀 33,783評論 4 324
  • 正文 年R本政府宣布炸站,位于F島的核電站,受9級特大地震影響疚顷,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,343評論 3 307
  • 文/蒙蒙 一腿堤、第九天 我趴在偏房一處隱蔽的房頂上張望阀坏。 院中可真熱鬧,春花似錦笆檀、人聲如沸忌堂。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,333評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽士修。三九已至,卻和暖如春樱衷,著一層夾襖步出監(jiān)牢的瞬間棋嘲,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,559評論 1 262
  • 我被黑心中介騙來泰國打工矩桂, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留沸移,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,595評論 2 355
  • 正文 我出身青樓侄榴,卻偏偏與公主長得像雹锣,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個(gè)殘疾皇子癞蚕,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,901評論 2 345

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