如何透過動態設定固定速率以程式設計方式使用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中文網其他相關文章!