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的主要内容,如果未能解决你的问题,请参考以下文章
Spring Boot 使用 Log4j2 & Logback 输出日志到 EKL
在 Spring Boot 应用程序的 log4j2 中未生成日志文件