SLF4J:类路径包含多个SLF4J绑定;排除slf4j

时间:2016-04-24 18:47:56

标签: java maven slf4j openimaj

我正在尝试使用OpenIMAJ加载视频。它确实显示视频但始终显示此错误:

SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/C:/Users/MaryLu/.m2/repository/ch/qos/logback/logback-classic/1.0.0/logback-classic-1.0.0.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/C:/Users/MaryLu/.m2/repository/org/slf4j/slf4j-log4j12/1.7.2/slf4j-log4j12-1.7.2.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.selector.DefaultContextSelector]
16/04/24 20:39:57 INFO xuggle.XuggleVideo: URL file:/F:/workspaceMaven/keyboardcat.flv could not be opened by ffmpeg. Trying to open a stream to the URL instead.
20:39:57.984 [main] DEBUG com.xuggle.xuggler - Could not open output url: file:/F:/workspaceMaven/keyboardcat.flv (../../../../../../../csrc/com/xuggle/xuggler/Container.cpp:436)

我已经检查了类似的问题,但我没有设法解决问题。如果我理解,我需要在我的POM.xml中的某个地方排除slf4j,但我不知道在哪个依赖项中。

3 个答案:

答案 0 :(得分:2)

您的日志文件中已经给出了答案。按照教程。

http://www.slf4j.org/codes.html#multiple_bindings

正如Wouter所述

运行mvn dependency:tree并搜索哪个依赖项具有您不想要的slf4j实现,然后使用依赖项排除项排除它们,如:

<dependency>
    <groupId>org.someexternallib</groupId>
    <artifactId>someexternallibartifact</artifactId>
    <version>...</version>

    <exclusions>
       <exclusion> 
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-log4j12</artifactId>
       </exclusion>
       <exclusion> 
          <groupId>log4j</groupId>
          <artifactId>log4j</artifactId>
      </exclusion>
    </exclusions> 
</dependency>

答案 1 :(得分:1)

slf4j消息只是告诉您slf4j配置已损坏,因此它会回退到默认配置。

真正的问题是,您的URL并未指向本地文件,因为它显然是因为它已损坏,因此尝试使用它的代码失败。如果你已经在某个地方打开了文件,可能会导致破解的原因,因此Windows不会允许它被覆盖。

答案 2 :(得分:0)

          <exclusion>
            <artifactId>logback-classic</artifactId>
            <groupId>ch.qos.logback</groupId>
          </exclusion>

          <exclusion>
                <artifactId>slf4j-simple</artifactId>
                <groupId>org.slf4j</groupId>
            </exclusion>

为了找到使用上述工件的依赖项,请查找 &#34; $ mvn依赖:树&#34; 一旦你发现将上述排除放在相应的依赖项上。这应该解决它,我会说注意特定的依赖。