如何通过动态设置固定速率以编程方式使用 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中文网其他相关文章!