spring boot更换日志为log4j2

Posted 剑握在手

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot更换日志为log4j2相关的知识,希望对你有一定的参考价值。

<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> 

<!-- 添加 log4j 依赖 -->  
<dependency>  
    <groupId>org.springframework.boot</groupId>  
    <artifactId>spring-boot-starter-log4j</artifactId>  
</dependency>

关于移除:如果不做移除会报类冲突。

 

之后在resources中添加log4j2.xml即可

以上是关于spring boot更换日志为log4j2的主要内容,如果未能解决你的问题,请参考以下文章