slf4j依赖报错

Exception in thread “main” java.lang.IllegalArgumentException: LoggerFactory is not a Logback LoggerContext but Logback is on the classpath. Either remove Logback or the competing implementation (class org.slf4j.impl.SimpleLoggerFactory loaded from file:/D:/Develop/maven/repository/org/slf4j/slf4j-simple/1.7.26/slf4j-simple-1.7.26.jar). If you are using WebLogic you will need to add ‘org.slf4j’ to prefer-application-packages in WEB-INF/weblogic.xml: org.slf4j.impl.SimpleLoggerFactory
slf4j依赖报错_第1张图片
遇到这个问题解决了好久现在分享一下解决办法

 
        <dependency>
            <groupId>org.examplegroupId>
            <artifactId>changgou-service-goods-apiartifactId>
            <version>1.0-SNAPSHOTversion>
            <exclusions>
                <exclusion>
                    <artifactId>slf4j-simpleartifactId>
                    <groupId>org.slf4jgroupId>
                exclusion>
            exclusions>
        dependency>

我相信大家一定迷茫,因为你们会发现每个人的解决方式好像都不一样,那么我自己总结了一个方法怎么样快速解决这个问题
解决依赖各种问题
可以使用maven Helper找到冲突的依赖,也可以找到,你想要解决的比如这个slf4j依赖。

你可能感兴趣的:(错误解决)