在我运行程序时,我在控制台中获得以下内容:
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/C:/.m2/repository/ch/qos/logback/logback-classic/1.1.1/logback-classic-1.1.1.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/C:/.m2/repository/org/apache/activemq/activemq-all/5.9.0/activemq-all-5.9.0.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
SLF4J: Actual binding is of type [ch.qos.logback.classic.util.ContextSelectorStaticBinder]
正如问题here中所述“我们没有办法使用maven依赖项排除命令来不采用activemq-all贡献的slf4j-log4j12工件.”
我不确定我现在是否继续这项工作.这是否意味着我必须使用5.10-SNAPSHOT?我打算在这个question中解决activemq-core的问题,但是我需要在5.9.0中发布的内容,核心只能达到5.9.我希望有人能给我一些建议.我真的需要帮助.
最佳答案 通常,如果activemq-all不符合您的需求,请从activemq-client jar开始.
旧的activemq-broker jar被拆分成几个版本.
您可能还需要包含JMS规范:
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-jms_1.1_spec</artifactId>
<version>1.1.1</version>
</dependency>