如何排除多个 SLF4J 绑定到 LOG4J

2022-09-02 00:27:26

我收到错误

SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/C:/Users/george/.gradle/caches/artifacts-26/filestore/org.apache.logging.log4j/log4j-slf4j-impl/2.0-beta8/jar/15984318e95b9b0394e979e413a4a14f322401c1/log4j-slf4j-impl-2.0-beta8.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/C:/Users/george/.gradle/caches/artifacts-26/filestore/org.slf4j/slf4j-log4j12/1.5.0/jar/aad1074d37a63f19fafedd272dc7830f0f41a977/slf4j-log4j12-1.5.0.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.

在我的build.gradle文件中,我有以下行来包含jar log4j-slf4j-impl-2.0-beta8.jar(我想绑定到LOG4J2)

 compile 'org.apache.logging.log4j:log4j-slf4j-impl:2.0-beta8' 

在依赖项目的另一个 build.gradle 文件中,我有多行类似于以下内容:

 compile 'dcm4che:dcm4che-core:2.0.23'

现在,dcm4che 包含对 log4j 版本 1 (slf4j-log4j12) 的依赖关系,因此它被包含在整个项目中。

下面是 Gradle 依赖项树中的一个代码段:

|    +--- dcm4che:dcm4che-core:2.0.23
|    |    \--- org.slf4j:slf4j-log4j12:1.5.0
|    |         +--- org.slf4j:slf4j-api:1.5.0 -> 1.7.5
|    |         \--- log4j:log4j:1.2.13 -> 1.2.14

我已经阅读了警告中建议的链接,但我无法弄清楚如何使用我想要的jar使我的应用程序绑定到log4j2。关于依赖关系管理的 Gradle 文档并没有真正使它更清晰。


答案 1

将此代码放在文件中build.gradle

configurations.all {
   exclude group: 'org.slf4j', module: 'slf4j-log4j12'
}

答案 2

解决方案是在 build.gradle 中添加以下内容。

configurations.all {
    resolutionStrategy.eachDependency { DependencyResolveDetails details ->
        if (details.requested.name == 'log4j') {
            details.useTarget "org.slf4j:log4j-over-slf4j:1.7.5"
        }
}

结果是,任何通常需要log4j的东西都将使用log4j-over-slf4j。

我还补充了:

if (details.requested.name == 'commons-logging') {
    details.useTarget "org.slf4j:jcl-over-slf4j:1.7.5"
}

为了完整性,以涵盖公共记录。


推荐