1. 程式人生 > >springboot啟動報錯LoggerFactory is not a Logback LoggerContext but Logback...

springboot啟動報錯LoggerFactory is not a Logback LoggerContext but Logback...

由於springboot預設日誌元件為logback,當時專案使用的為log4j,在打war包到tomcat啟動時報如上錯誤。

原因:lock4j日誌元件和自帶logback日誌元件衝突。

解決方法:

    將預設日誌元件排除。

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-starter-logging</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

--------------------- 
作者:csdn-延 
來源:CSDN 
原文:https://blog.csdn.net/m0_37125796/article/details/80989002 
版權宣告:本文為博主原創文章,轉載請附上博文連結!