如何在Service类中使用org.quartz.Scheduler对象

时间:2019-02-26 06:36:55

标签: spring spring-boot quartz-scheduler

我已经创建了一个spring boot应用程序,其中我正在创建主类的调度程序对象。

prop.put("quartz.scheduler.instanceName", "ServerScheduler");
        prop.put("org.quartz.scheduler.instanceId", "AUTO");
        prop.put("org.quartz.scheduler.skipUpdateCheck", "true");
        prop.put("org.quartz.scheduler.instanceId", "CLUSTERED");
        prop.put("org.quartz.scheduler.jobFactory.class", "org.quartz.simpl.SimpleJobFactory");
        prop.put("org.quartz.jobStore.class", "org.quartz.impl.jdbcjobstore.JobStoreTX");
        prop.put("org.quartz.jobStore.driverDelegateClass", "org.quartz.impl.jdbcjobstore.StdJDBCDelegate");
        prop.put("org.quartz.jobStore.dataSource", "quartzDataSource");
        prop.put("org.quartz.jobStore.tablePrefix", "H1585.QRTZ_");
        prop.put("org.quartz.jobStore.isClustered", "false");
        prop.put("org.quartz.scheduler.misfirePolicy", "doNothing");

        prop.put("org.quartz.dataSource.quartzDataSource.driver", "com.ibm.db2.jcc.DB2Driver");
        prop.put("org.quartz.dataSource.quartzDataSource.URL", url);
        prop.put("org.quartz.dataSource.quartzDataSource.user", user);
        prop.put("org.quartz.dataSource.quartzDataSource.password", passwrd);
        prop.put("org.quartz.dataSource.quartzDataSource.maxConnections", "2");

        SpringApplication.run(SchedulerApplication.class, args);

        try {

            SchedulerFactory stdSchedulerFactory = new StdSchedulerFactory(prop);
            Scheduler scheduler = stdSchedulerFactory.getScheduler();
            scheduler.start();

我想在服务类中使用相同的调度程序对象来触发作业。我正在使用以下代码的代码无法正常显示不同的实例ID。

scheduler = StdSchedulerFactory.getDefaultScheduler();

请提出解决方法的建议。预先感谢!

1 个答案:

答案 0 :(得分:1)

您可以创建一个单例Scheduler,并在您的服务类别中自动接线

@SpringBootApplication
public class SchedulerApplication {

    public static void main(final String[] args) {
        SpringApplication.run(DemoApplication.class, args);
    }
    @Bean
    public Scheduler scheduler() {
        //create props as you above code
        SchedulerFactory stdSchedulerFactory = new StdSchedulerFactory(prop);
        Scheduler scheduler = stdSchedulerFactory.getScheduler();
        scheduler.start();
        return scheduler;
    }
}

然后您就可以在服务类别中使用

@Service
public class YourServiceClass {
    @Autowired
    private Scheduler scheduler;
}