首頁 > Java > java教程 > Spring如何動態調度固定費率的作業?

Spring如何動態調度固定費率的作業?

DDD
發布: 2024-11-27 20:21:11
原創
375 人瀏覽過

How to Dynamically Schedule Jobs with a Fixed Rate in Spring?

如何透過動態設定固定速率以程式設計方式使用Spring 排程作業

在Spring 中,可以使用@Scheduled 等註解來排程任務。但是,如果需要動態更改固定速率而不重新部署應用程序,則需要不同的方法。

一種解決方案是使用觸發器。使用觸發器,您可以根據自訂邏輯即時計算下一個執行時間。

以下是如何使用 ScheduledTaskRegistrar 配置基於觸發器的作業的範例:

@Configuration
@EnableScheduling
public class MyAppConfig implements SchedulingConfigurer {

    @Autowired
    Environment env;

    @Bean
    public MyBean myBean() {
        return new MyBean();
    }

    @Bean(destroyMethod = "shutdown")
    public Executor taskExecutor() {
        return Executors.newScheduledThreadPool(100);
    }

    @Override
    public void configureTasks(ScheduledTaskRegistrar taskRegistrar) {
        taskRegistrar.setScheduler(taskExecutor());
        taskRegistrar.addTriggerTask(
                new Runnable() {
                    @Override public void run() {
                        myBean().getSchedule();
                    }
                },
                new Trigger() {
                    @Override public Date nextExecutionTime(TriggerContext triggerContext) {
                        Calendar nextExecutionTime =  new GregorianCalendar();
                        Date lastActualExecutionTime = triggerContext.lastActualExecutionTime();
                        nextExecutionTime.setTime(lastActualExecutionTime != null ? lastActualExecutionTime : new Date());
                        nextExecutionTime.add(Calendar.MILLISECOND, env.getProperty("myRate", Integer.class)); //Get the value dynamically
                        return nextExecutionTime.getTime();
                    }
                }
        );
    }
}
登入後複製

這允許您使用環境屬性動態設定固定速率。 myRate 屬性可以從任何來源檢索,例如資料庫或設定檔。

以上是Spring如何動態調度固定費率的作業?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板