java – 无法解析org.springframework.context.ApplicationContextAware类型.它是从所需的.class文件间接引用的

前端之家收集整理的这篇文章主要介绍了java – 无法解析org.springframework.context.ApplicationContextAware类型.它是从所需的.class文件间接引用的前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

编译以下代码会产生此错误

The type org.springframework.context.ApplicationContextAware cannot be resolved. It is indirectly referenced from required .class files
(this error is for last line of code)

我想我应该在构建路径中添加.jar文件,但我不知道它是什么?

CamelContext context = new DefaultCamelContext(); 
ConnectionFactory connectionFactory = new ActiveMQConnectionFactory(ActiveMQConnection.DEFAULT_BROKER_URL);
context.addComponent("test-jms",JmsComponent.jmsComponentAutoAcknowledge(connectionFactory));
最佳答案
你需要添加Spring Framework

org.springframework.context-3.x.x.jar

到项目的构建路径.根据您使用的第三方库,它可能具有其他Spring依赖项,您也必须添加这些Spring jar.你很可能也需要org.springframework.core-3.x.x.jar.

请查阅您的直接依赖项文档,以了解它的依赖项.

原文链接:https://www.f2er.com/spring/432658.html

猜你在找的Spring相关文章