美文网首页
maven解决日志组件冲突

maven解决日志组件冲突

作者: insomniaLee | 来源:发表于2020-05-06 09:46 被阅读0次

    今天写个验证项目的时候启动不起来。报了Caused by: org.apache.logging.log4j.LoggingException: log4j-slf4j-impl cannot be present with log4j-to-slf4j的错误。
    使用命令下面命令来查看maven之间的依赖树,

    mvn dependency:tree > tree.text
    

    根据报错的包到文件中进行查找。
    然后用以下命令来将冲突的jar包一一排查即可。

    <dependency>
    ...
        <exclusions>
            <exclusion>
                <artifactId></artifactId>
                <groupId></groupId>
            </exclusion>
        </exclusions>
    </dependency>
    

    相关文章

      网友评论

          本文标题:maven解决日志组件冲突

          本文链接:https://www.haomeiwen.com/subject/kqrightx.html