先上解决方案
如果你的情况是quartz使用了spring配置的数据源,2.5.6以前的版本正常使用,升级版本后,报错There is no DataSource named ‘null’,尝试删除配置的org.quartz.jobStore.class属性(你也可能使用了常量StdSchedulerFactory.PROP_JOB_STORE_CLASS来表示该属性)。
现象
spring版本由2.5.6升级为spring 2.6.2,数据源使用的spring配置的数据源,启动时报错。
quartz版本一直是2.3.2。
原因分析
- 跟踪源码发现,2.5.6时数据源注入是StdSchedulerFactory.java的instantiate()方法第1368行js.initialize(loadHelper, qs.getSchedulerSignaler());该方法是由spring-context-support-5.3.12.jar的LocalDataSourceJobStore.java实现的。
js.initialize(loadHelper, qs.getSchedulerSignaler());
- 但是配置文件中该属性的配置是
// JobStore配置
prop.put("org.quartz.jobStore.class", "org.quartz.impl.jdbcjobstore.JobStoreTX");
- 在SchedulerFactoryBean的initSchedulerFactory(StdSchedulerFactory schedulerFactory)方法中,如果dataSource存在,会修改PROP_JOB_STORE_CLASS参数的值
if (this.dataSource != null) {
mergedProps.setProperty(StdSchedulerFactory.PROP_JOB_STORE_CLASS, LocalDataSourceJobStore.class.getName());
}
升级到2.6.2版本后,对应的spring-context-support-5.3.14.jar的SchedulerFactoryBean的initSchedulerFactory(StdSchedulerFactory schedulerFactory)方法,如果存在则不修改该属性。
if (this.dataSource != null) {
mergedProps.putIfAbsent(StdSchedulerFactory.PROP_JOB_STORE_CLASS, LocalDataSourceJobStore.class.getName());
}
解决方案
代码中手动配置了org.quartz.jobStore.class属性为org.quartz.impl.jdbcjobstore.JobStoreTX,去掉配置的org.quartz.jobStore.class属性即可解决该问题。