使用Spring2.0的任务调度报错:
Caused by: org.springframework.beans.BeanInstantiationException: Could not instantiate bean
class [org.springframework.scheduling.quartz.JobDetailBean]: Constructor threw exception;
nested exception is java.lang.NoSuchMethodError: orderedSet
Caused by: java.lang.NoSuchMethodError: orderedSet
这是因为commons-collections的版本太低导致的,换成3.*版本的即可。
Caused by: org.springframework.beans.BeanInstantiationException: Could not instantiate bean
class [org.springframework.scheduling.quartz.JobDetailBean]: Constructor threw exception;
nested exception is java.lang.NoSuchMethodError: orderedSet
Caused by: java.lang.NoSuchMethodError: orderedSet
这是因为commons-collections的版本太低导致的,换成3.*版本的即可。
Spring2.0任务调度错误解决
本文介绍了一个关于使用Spring2.0进行任务调度时出现的错误:由于commons-collections版本过低导致的NoSuchMethodError异常。文章指出将commons-collections升级到3.*版本可以有效解决此问题。
253

被折叠的 条评论
为什么被折叠?



