Htmlunit具有以下Maven依赖关系,
<dependency>
<groupId>net.sourceforge.htmlunit</groupId>
<artifactId>htmlunit</artifactId>
<version>2.18</version>
</dependency>
我收到以下错误,
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/home/mnkb/.m2/repository/ch/qos/logback/logback-classic/1.1.3/logback-classic-1.1.3.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/home/mnkb/.m2/repository/org/apache/activemq/activemq-all/5.12.0/activemq-all-5.12.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]
在我的pom.xml中,我甚至注释掉了以下依赖项,
<!-- <dependency>
<groupId>com.mattbertolini</groupId>
<artifactId>liquibase-slf4j</artifactId>
<version>${liquibase-slf4j.version}</version>
</dependency> -->
答案 0 :(得分:0)
activemq-all
依赖关系似乎是一个包含slf4j的uberjar。其他一些依赖似乎也引入了slf4j。这就是你得到这个错误的原因。如果您可以尝试摆脱activemq-all
依赖关系,可以使用activemq-core
。似乎是ActiveMQ包装的一个问题(见https://issues.apache.org/jira/browse/AMQ-5009)。