使用 Spring JMS 时编译错误
我在尝试使用 Spring-JMS 时遇到编译错误。谷歌快速搜索只找到了一个匹配的结果,但我无法从中得到任何有用的信息。
我正在使用以下代码:
public class Class extends AbstractClass {
/** {@inheritDoc} */
@Override
public void acceptImportableItem(final ImportableItem<File> item) {
JmsOperations template = getJmsTemplate();
template.convertAndSend(item);
}
}
当我尝试编译它时,我收到以下编译错误:
cannot access javax.jms.Destination
并且
class file for javax.jms.Destination not found
我的代码中没有任何地方引用 javax.jms.Destination。你们中有人知道为什么会出现这个错误吗?
I'm running into a compile error while trying to use Spring-JMS. A quick Google search only turned up one matching result, but I was unable to get anything useful out of it.
I'm using the following code:
public class Class extends AbstractClass {
/** {@inheritDoc} */
@Override
public void acceptImportableItem(final ImportableItem<File> item) {
JmsOperations template = getJmsTemplate();
template.convertAndSend(item);
}
}
When I try to compile it, I receive the following compile error:
cannot access javax.jms.Destination
and
class file for javax.jms.Destination not found
Nowhere in my code to I reference javax.jms.Destination. Do any of you have any idea why that error would crop up?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
JmsOperations 的某些方法需要 javax jms 类,因此您在构建路径中需要它们。无论如何,您在运行时将需要 JMS 提供者在类路径上的实现。
JmsOperations requires the javax jms classes for some of its methods, so you need them in your build path. You are going to need your JMS provider's implementations on your classpath at runtime, anyway.
我正在使用 activemq,在我的例子中,它是通过将其添加到 pom 来解决的:
I'm using activemq and in my case it was solved by adding this to the pom: