**[Hatanaka, Akihiro](https://jira.spring.io/secure/ViewProfile.jspa?name=hatanaka)** opened **[SPR-11362](https://jira.spring.io/browse/SPR-11362?redirect=false)** and commented With Quartz 2.0, SchedulerFactoryBean throws NoSuchMethodException. My scheduler config in appliction.xml is below. \<bean id="scheduler" class="org.springframework.scheduling.quartz.SchedulerFactoryBean"> \<property name="globalJobListeners"> \<list> \<ref bean="qbpmContextJobListener" /> \</list> \</property> ... \</bean> There is a bug in SchedulerAccessor#registerListeners(). Quartz 2.1, 2.2 has org.quartz.core.ListenerManagerImpl.addJobListener(JobListener). However, Quartz 2.0 does not have. So this line throws NoSuchMethodException. Method addJobListener = target.getClass().getMethod((quartz2 ? "addJobListener" : "addGlobalJobListener"), JobListener.class); --- **Affects:** 3.2 GA, 3.2.6 **Issue Links:** - #15908 Full Quartz 2.2 compatibility, including LocalDataSourceJobStore - #15887 Require Jackson 2.1+, Quartz 2.1.4+, EhCache 2.5+ **Referenced from:** commits https://github.com/spring-projects/spring-framework/commit/fe4b57c199695cd91d985a17e1f2113f5a083675, https://github.com/spring-projects/spring-framework/commit/c719c70ea972552d45031cf3d281cc4d5dc1237d **Backported to:** [3.2.7](https://github.com/spring-projects/spring-framework/milestone/95?closed=1)