SLF4J: クラスパスに複数の SLF4J バインディングが含まれています 質問する

SLF4J: クラスパスに複数の SLF4J バインディングが含まれています 質問する

次のエラーが発生しています。 slf4j にバインドされているロギング フレームワークが複数あるようです。 解決方法がわかりません。 ご協力いただければ幸いです。

SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/C:/Users/admin/.m2/repository/org/slf4j/slf4j-log4j12/1.6.4/slf4j-log4j12-1.6.4.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/C:/Users/admin/.m2/repository/org/slf4j/slf4j-log4j12/1.6.1/slf4j-log4j12-1.6.1.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.

ベストアンサー1

競合の原因となった依存関係 (pom.xml) に次の除外を追加することで解決しました。

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

おすすめ記事