使用 Spring JMS 时编译错误

发布于 2024-10-18 14:46:21 字数 610 浏览 1 评论 0原文

我在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

风吹雪碎 2024-10-25 14:46:21

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.

眼前雾蒙蒙 2024-10-25 14:46:21

我正在使用 activemq,在我的例子中,它是通过将其添加到 pom 来解决的:

    <dependency>
        <groupId>org.apache.activemq</groupId>
        <artifactId>activemq-broker</artifactId>
    </dependency>

I'm using activemq and in my case it was solved by adding this to the pom:

    <dependency>
        <groupId>org.apache.activemq</groupId>
        <artifactId>activemq-broker</artifactId>
    </dependency>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文