Spring 类EnvironmentCapable
我收到了字符串的运行时错误
ApplicationContext context = new ClassPathXmlApplicationContext("Beans.xml");
java.lang.NoClassDefFoundError: org/springframework/core/env/EnvironmentCapable
我已经检查了 jar org.springframework.core-3.0.4.RELEASE.jar 并且没有找到这个类。 这个类在哪个包中?谢谢。
I received run-time error for string
ApplicationContext context = new ClassPathXmlApplicationContext("Beans.xml");
java.lang.NoClassDefFoundError: org/springframework/core/env/EnvironmentCapable
I have checked jar org.springframework.core-3.0.4.RELEASE.jar and doesnt' found this class.
In which package this class? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为需要使用版本 3.1.0 - 在包 org.springframework.core-3.1.0.M2.jar 这个类中。
I think that need use version 3.1.0 - in package org.springframework.core-3.1.0.M2.jar this class presents.
这是一个 Spring 3.1(仍然是一个里程碑版本)类。如果您打算使用 Spring 3.0,那么您一定不小心混入了一些 3.1 的东西。
That's a Spring 3.1 (still a milestone release) class. If you're intending to use Spring 3.0, you must have mixed in some 3.1 stuff accidentally.