27

当我升级到 activemq-all-5.6.0

我在服务器启动期间收到此错误

SLF4J:类路径包含多个 SLF4J 绑定

使用activemq-all-5.5.1时没有这个问题

在检查时,我确实发现 activemq-all-5.6.0.jar 和 slf4j-log4j12-1.5.10.jar 中都有 StaticLoggerBinder.class 导致问题

请帮助调试此问题

我的 pom.xml 如下

<dependency>
    <groupId>org.slf4j</groupId>
    <artifactId>slf4j-api</artifactId>
    <version>1.5.10</version>
</dependency>
<dependency>
    <groupId>org.slf4j</groupId>
    <artifactId>jcl-over-slf4j</artifactId>
    <version>1.5.10</version>
    <scope>runtime</scope>
</dependency>
<dependency>
    <groupId>org.slf4j</groupId>
    <artifactId>slf4j-log4j12</artifactId>
    <version>1.5.10</version>
    <scope>runtime</scope>
</dependency>

活跃的 mq 依赖是这样的

旧版本 5.5.1(这工作)

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

新版本 5.6.0(这给出了错误)

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

提前致谢。

4

2 回答 2

44

ActiveMQ 家伙使用Maven Shade 插件来创建 activemq-all "ueber" jar。在版本 5.5.1 和 5.6.0 之间的某个地方,他们添加了 org.slf4j:slf4j-log4j12 依赖项 - 因此你的问题。

不幸的是,因为他们使用了你不能exclusions在你的 POM 中的 activemq-all 依赖定义中使用的 shade 插件。

相反,您需要用所有必需的单个依赖项(当然 org.sl4j-log4j12 除外)完全替换 activemq-all 依赖项。

以下页面详细说明了所有必需的依赖项: http: //activemq.apache.org/initial-configuration.html#InitialConfiguration-RequiredJARs

或者,以下是包含在 activemq-all jar 中的所有依赖项(必需和可选)的列表(取自 activemq-all pom 中的 shade 插件配置):

org.apache.activemq:activemq-camel
org.apache.activemq:activemq-core
org.apache.activemq:activemq-console
org.apache.activemq:activemq-jaas
org.apache.activemq:activemq-optional
org.apache.activemq:kahadb
org.apache.geronimo.specs:geronimo-jms_1.1_spec
org.apache.geronimo.specs:geronimo-jta_1.0.1B_spec
org.apache.geronimo.specs:geronimo-j2ee-management_1.1_spec
org.apache.geronimo.specs:geronimo-annotation_1.0_spec
org.slf4j:slf4j-api
org.slf4j:slf4j-log4j12
log4j:log4j

希望有帮助。

于 2012-08-02T22:14:05.773 回答
14

我在使用 Spring 时遇到了同样的问题。帮助我的是将 activemq-all 的依赖替换为:

<dependency>
    <groupId>org.apache.activemq</groupId>
    <artifactId>activemq-spring</artifactId>
    <version>5.14.3</version>
</dependency>

希望这会帮助任何人......

于 2017-02-23T08:33:22.147 回答