動的に設定された固定レートを使用してプログラムで Spring でジョブをスケジュールする方法
Spring では、@Scheduled などのアノテーションを使用してタスクをスケジュールできます。ただし、アプリケーションを再デプロイせずに固定レートを動的に変更する必要がある場合は、別のアプローチが必要です。
解決策の 1 つは、トリガーを使用することです。トリガーを使用すると、カスタム ロジックに基づいて次の実行時間をオンザフライで計算できます。
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(); } } ); } }
これにより、Environment プロパティを使用して固定レートを動的に設定できるようになります。 myRate プロパティは、データベースや構成ファイルなどの任意のソースから取得できます。
以上が春に固定レートでジョブを動的にスケジュールするにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。