ホームページ > Java > &#&チュートリアル > 春に固定レートでジョブを動的にスケジュールするにはどうすればよいですか?

春に固定レートでジョブを動的にスケジュールするにはどうすればよいですか?

DDD
リリース: 2024-11-27 20:21:11
オリジナル
391 人が閲覧しました

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

動的に設定された固定レートを使用してプログラムで 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 サイトの他の関連記事を参照してください。

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート