Quartz + spring 定时任务常见错误总结

1.配了下spring-biz.xml,总是报错,

org.springframework.beans.factory.BeanCreationException:Errorcreatingbeanwithname'methodInvokingJobDetail'definedinclasspathresource[config/spring/spring-biz.xml]:Instantiationofbeanfailed;nestedexceptionisjava.lang.NoClassDefFoundError:org.quartz.JobExecutionException

Causedby:

java.lang.NoClassDefFoundError:org.quartz.JobExecutionException

网上说只有spring不行,要增加quartz-all-1.6.0.jar

2.

org.springframework.beans.factory.BeanCreationException:Errorcreatingbeanwithname'methodInvokingJobDetail'definedinclasspathresource[config/spring/spring-biz.xml]:Invocationofinitmethodfailed;nestedexceptionisjava.lang.NoClassDefFoundError:org/apache/commons/collections/SetUtils

Causedby:

java.lang.NoClassDefFoundError:org/apache/commons/collections/SetUtils

这个要增加commons-collections-3.1.jar

3.

org.springframework.beans.factory.BeanCreationException:Errorcreatingbeanwithname'org.springframework.scheduling.quartz.SchedulerFactoryBean'definedinclasspathresource[config/spring/spring-biz.xml]:Invocationofinitmethodfailed;nestedexceptionisjava.lang.NoClassDefFoundError:javax/transaction/UserTransaction

Causedby:

java.lang.NoClassDefFoundError:javax/transaction/UserTransaction

增加jta.jar即可

相关推荐