Maven SL4J 多重绑定,以前的解决方案失败

Maven SL4J multiple bindings, previous solutions fail

我有一个包含多个 SLF4J 绑定的项目。 我已经阅读并尝试了 this SO post, this other SO post 中的解决方案 和 slf4j website.

当我 运行 代码是

时,我看到了什么
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/Users/Mike/.m2/repository/org/jlab/coat/coat-libs/5.1-SNAPSHOT/coat-libs-5.1-SNAPSHOT.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/Users/Mike/.m2/repository/org/slf4j/slf4j-log4j12/1.7.16/slf4j-log4j12-1.7.16.jar!/org/slf4j/impl/StaticLoggerBinder.class]

但是在我的 pom.xml 文件中,我已经有

    <dependency>
        <groupId>org.jlab.coat</groupId>
        <artifactId>coat-libs</artifactId>
        <version>5.1-SNAPSHOT</version>
        <exclusions>
            <exclusion>
                <groupId>org.slf4j</groupId>
                <artifactId>slf4j-log4j12</artifactId>
            </exclusion>
        </exclusions>
    </dependency>

并且在 mvn dependency:tree 中我没有看到排除 jar 的这种依赖性,仅针对 Spark jar,即

[INFO] com.IKP:DCdatabase:jar:0.0.1-SNAPSHOT
[INFO] +- org.jlab.coat:coat-libs:jar:5.1-SNAPSHOT:compile
[INFO] +- org.apache.spark:spark-core_2.11:jar:2.2.1:compile
...
...
...
[INFO] |  +- org.slf4j:slf4j-api:jar:1.7.16:compile
[INFO] |  +- org.slf4j:jul-to-slf4j:jar:1.7.16:compile
[INFO] |  +- org.slf4j:jcl-over-slf4j:jar:1.7.16:compile
[INFO] |  +- log4j:log4j:jar:1.2.17:compile
[INFO] |  +- org.slf4j:slf4j-log4j12:jar:1.7.16:compile

我还尝试了一些其他步骤,例如清理我的 .m2 目录,并从头开始构建所有源,但我仍然看到这种双重绑定。

发生的细微差别是确实发生了 Spark 的日志抑制,即

    Logger.getLogger("org.apache.spark.SparkContext").setLevel(Level.WARN);
    Logger.getLogger("org").setLevel(Level.OFF);
    Logger.getLogger("akka").setLevel(Level.OFF);

不再将级别设置为关闭,我看到了所有级别。

是否有另一种方法来删除 SLF4J 的多重绑定?

正如消息所说,您正在从 coat-libs-5.1-SNAPSHOT.jar 获得一个绑定,而在 slf4j-log4j12-1.7.16.jar 中获得另一个绑定。并不是 "coat-libs" 试图引入具有绑定的依赖项,它 试图处理 SLF4J 日志记录的日志记录绑定。您只能使用一个日志记录绑定,因此您需要删除 coat-libs 的使用,或者您需要从 spark-core 的依赖项中排除 slf4j-log4j12,具体取决于您实际尝试使用的日志记录框架。

在我看来 coat-libs 已被打包为超级 jar,这就是为什么当您 mvn dependency:tree 时 slf4j 不会显示为依赖项。这解释了为什么您的排除不起作用。

我建议您查看用于打包 jar 的 maven shade 插件。然后,您可以使用过滤器从 coat-libs using a filter.

中排除 slf4j 依赖项

例如,可能是这样的:

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-shade-plugin</artifactId>
        <version>3.1.1</version>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <filters>
                <filter>
                  <artifact>org.jlab.coat:coat-libs</artifact>
                  <excludes>
                    <exclude>org/slf4j/**</exclude>
                  </excludes>
                </filter>
                <filter>
                  <artifact>*:*</artifact>
                  <excludes>
                    <exclude>META-INF/*.SF</exclude>
                    <exclude>META-INF/*.DSA</exclude>
                    <exclude>META-INF/*.RSA</exclude>
                  </excludes>
                </filter>
              </filters>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>