6

我对 Quartz 很陌生,现在我需要在 Spring Web 应用程序中安排一些工作。

我知道 Spring + Quartz 集成(我使用的是 Spring v 3.1.1),但我想知道这是否是正确的方法。

特别是我需要将我的计划任务保存在数据库中,以便在重新启动应用程序时重新初始化它们。

Spring调度包装器是否提供了一些实用程序来执行此操作?你能建议我遵循一些“众所周知”的方法吗?

4

2 回答 2

13

这是我处理这种情况的一种方法。

首先,在我的 Spring Configuration 中,我指定了一个SchedulerFactoryBean可以将其Scheduler注入其他 bean 的方法。

<bean name="SchedulerFactory"
    class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
    <property name="applicationContextSchedulerContextKey">
        <value>applicationContext</value>
    </property>
</bean>

然后,当我在我的应用程序中创建作业时,我将作业的详细信息存储在数据库中。此服务由我的一个控制器调用,它会安排作业:

@Component
public class FollowJobService {

    @Autowired
    private FollowJobRepository followJobRepository;

    @Autowired
    Scheduler scheduler;

    @Autowired
    ListableBeanFactory beanFactory;

    @Autowired
    JobSchedulerLocator locator;

    public FollowJob findByClient(Client client){
        return followJobRepository.findByClient(client);
    }

    public void saveAndSchedule(FollowJob job) {
        job.setJobType(JobType.FOLLOW_JOB);
        job.setCreatedDt(new Date());
        job.setIsEnabled(true);
        job.setIsCompleted(false);

        JobContext context = new JobContext(beanFactory, scheduler, locator, job);
        job.setQuartzGroup(context.getQuartzGroup());
        job.setQuartzName(context.getQuartzName());

        followJobRepository.save(job);

        JobSchedulerUtil.schedule(new JobContext(beanFactory, scheduler, locator, job));
    }
}

I build 包含有关作业的JobContext详细信息,并最终传递给用于调度作业的实用程序。这是实际调度作业的实用程序方法的代码。请注意,在我的服务中,我自动连接JobScheduler并将其传递给JobContext. 另请注意,我使用我的存储库将作业存储在数据库中。

/**
 * Schedules a DATA_MINING_JOB for the client. The job will attempt to enter
 * followers of the target into the database.
 */
@Override
public void schedule(JobContext context) {
    Client client = context.getNetworkSociallyJob().getClient();
    this.logScheduleAttempt(context, client);

    JobDetail jobDetails = JobBuilder.newJob(this.getJobClass()).withIdentity(context.getQuartzName(), context.getQuartzGroup()).build();
    jobDetails.getJobDataMap().put("job", context.getNetworkSociallyJob());
    jobDetails.getJobDataMap().put("repositories", context.getRepositories());

    Trigger trigger = TriggerBuilder.newTrigger().withIdentity(context.getQuartzName() + "-trigger", context.getQuartzGroup())
            .withSchedule(cronSchedule(this.getSchedule())).build();

    try {
        context.getScheduler().scheduleJob(jobDetails, trigger);            
        this.logSuccess(context, client);

    } catch (SchedulerException e) {
        this.logFailure(context, client);
        e.printStackTrace();
    }
}

所以在所有这些代码执行之后,我发生了两件事,我的工作是存储在数据库中,并使用石英调度程序进行调度。现在,如果应用程序重新启动,我想使用调度程序重新安排我的工作。为此,我注册了一个实现ApplicationListener<ContextRefreshedEvent>了每次容器重新启动或启动时由 Spring 调用的 bean。

<bean id="jobInitializer" class="com.network.socially.web.jobs.JobInitializer"/>

JobInitializer.class

public class JobInitializer implements ApplicationListener<ContextRefreshedEvent> {

    Logger logger = LoggerFactory.getLogger(JobInitializer.class);

    @Autowired
    DataMiningJobRepository repository;

    @Autowired
    ApplicationJobRepository jobRepository;

    @Autowired
    Scheduler scheduler;

    @Autowired
    JobSchedulerLocator locator;

    @Autowired
    ListableBeanFactory beanFactory;

    @Override
    public void onApplicationEvent(ContextRefreshedEvent event) {
        logger.info("Job Initilizer started.");

        //TODO: Modify this call to only pull completed & enabled jobs
        for (ApplicationJob applicationJob : jobRepository.findAll()) {
            if (applicationJob.getIsEnabled() && (applicationJob.getIsCompleted() == null || !applicationJob.getIsCompleted())) {
                JobSchedulerUtil.schedule(new JobContext(beanFactory, scheduler, locator, applicationJob));
            }
        }       
    }

}

此类自动装配调度程序和一个存储库,该存储库获取实现该ApplicationJob接口的每个作业的实例。使用来自这些数据库记录的信息,我可以使用我的调度程序实用程序来重建我的作业。

所以基本上我手动将作业存储在我的数据库中,并通过注入Scheduler适当的 bean 的实例来手动安排它们。为了重新安排它们,我查询我的数据库,然后使用 来安排它们ApplicationListener以考虑容器的重新启动和启动。

于 2013-07-03T00:14:40.680 回答
7

我想有相当多的文档可用于 Spring 和 Quartz JDBC 作业存储集成;例如:

于 2013-07-01T13:01:41.953 回答