gpt4 book ai didi

spring - 使用 Spring JMS 和 ActiveMQ 的正确 Maven 依赖项是什么?

转载 作者:IT老高 更新时间:2023-10-28 13:48:56 25 4
gpt4 key购买 nike

这是一个很常见的问题,我在网上找到了很多不适合我的解决方案。我声明:

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jms</artifactId>
<version>3.0.7.RELEASE</version>
</dependency>

<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-all</artifactId>
<version>5.5.0</version>
</dependency>

还有 jetty 插件

<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
</plugin>

但在发出“mvn jetty:run”时,我不断收到以下异常:

org.springframework.beans.FatalBeanException: NamespaceHandler class [org.apache.xbean.spring.context.v2.XBeanNamespaceHandler] for namespace [http://activemq.apache.org/schema/core] not found; nested exception is java.lang.ClassNotFoundException: org.apache.xbean.spring.context.v2.XBeanNamespaceHandler

运行 Jetty、ActiveMQ 和 Spring JMS 的正确 maven 依赖项是什么?

最佳答案

你需要依赖 xbean-spring

<dependency>
<groupId>org.apache.xbean</groupId>
<artifactId>xbean-spring</artifactId>
<version>3.7</version>
</dependency>

关于spring - 使用 Spring JMS 和 ActiveMQ 的正确 Maven 依赖项是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12564059/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com