10

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

<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>

和码头插件

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

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

org.springframework.beans.FatalBeanException:找不到命名空间 [http://activemq.apache.org/schema/core] 的 NamespaceHandler 类 [org.apache.xbean.spring.context.v2.XBeanNamespaceHandler];嵌套异常是 java.lang.ClassNotFoundException: org.apache.xbean.spring.context.v2.XBeanNamespaceHandler

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

4

2 回答 2

13

你需要依赖 xbean-spring

<dependency>
  <groupId>org.apache.xbean</groupId>
  <artifactId>xbean-spring</artifactId>
  <version>3.7</version>
</dependency>
于 2012-09-24T11:59:07.817 回答
2

如果您的意图是将这些依赖项作为您的 web 应用程序的“提供”依赖项,然后使它们成为 jetty-maven-plugin 本身的依赖项,您可以在 jetty-maven-plugin 的 decl 内添加标签。假设您验证了您缺少的类存在于这些依赖项或其传递依赖项中。

于 2012-09-24T11:32:04.883 回答