Spring Boot Project中的作业调度库

时间:2018-02-06 13:37:35

标签: java spring scheduled-tasks

我正在寻找一个调度程序库,它可以执行在一天中的特定时间调用其他REST API的简单任务。请告知在Spring Boot项目中使用哪个好的库。我基本上是在寻找能够自动将作业配置信息记录到DB的东西,并且有一个用于检查作业状态的UI界面(可取但不是强制性的)。

我确实碰到过这个,但由于我之前没有任何经验,只有石英,所以我无法拨打电话:http://blog.dreamcss.com/tools/java-based-job-scheduler/

注意:我在之前的项目中使用了Quartz,但是我遇到了多个问题,因为它似乎没有将与作业相关的信息记录到DB的问题。具体而言,它不会将关于上次运行时间的正确信息记录到DB中,以及上次作业运行是否成功完成。此外,我已经看到,如果上一个作业需要更长的时间才能完成,Quartz中的Jobs会被阻止。

2 个答案:

答案 0 :(得分:1)

在春季启动时,您有一个嵌入式简单引擎用于安排。

例如,在@Component中使用@Scheduled注释。 并且不记得使用@EnableScheduling注释启用计划。

您可以在本文spring.io link

中详细了解此主题

答案 1 :(得分:0)

使用触发器,您可以动态计算下一个执行时间。

这样的事情可以解决问题(改编自@EnableScheduling的Javadoc):

@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)); //you can get the value from wherever you want
                        return nextExecutionTime.getTime();
                    }
                }
        );
    }
}