Quartz 调度程序 - NoClassDefFoundError
我在 Maven 项目中使用 Quratz 1.6.3 API。这是我运行时收到的错误消息: java.lang.NoClassDefFoundError: org/apache/commons/collections/SetUtils 在 org.quartz.JobDetail.(JobDetail.java:85) .....
commons.collections 3.2 依赖项包含在项目的 pom.xml 文件中。导致此错误的原因可能是什么?
提前致谢。
I am using Quratz 1.6.3 API in a Maven project. This is the error message I get when I run it:
java.lang.NoClassDefFoundError: org/apache/commons/collections/SetUtils
at org.quartz.JobDetail.(JobDetail.java:85)
.....
commons.collections 3.2 dependency is included in the project's pom.xml file. What could be the reason for this error?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
commons.collections 3.2.1包含这个类
所以问题应该出在你的maven项目中。仔细检查 commons.collections 获取的是类路径(参见日志)。或者显示项目配置,以便我们能够提供帮助。
commons.collections 3.2.1 contains this class
So the problem should be in your maven project. Double check that the commons.collections gets is the classpath (see logs). Or show the project configuration, so we would be able to help.