首页 > 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
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板