springboot整合log4j2不成功

1、问题

springboot自带日志logback,但是我还是比较习惯使用log4j,不知道从啥版本开始,springboot不支持log4j了,在使用log4j2的时候遇到了一点小问题,在这里记录一下。
控制台提示信息如下:
在这里插入图片描述

ERROR StatusLogger No Log4j 2 configuration file found. Using default
configuration (logging only errors to the console), or user
programmatically provided configurations. Set system property
‘log4j2.debug’ to show Log4j 2 internal initialization logging. See
https://logging.apache.org/log4j/2.x/manual/configuration.html for
instructions on how to configure Log4j 2

2、解决问题

(1) pom.xml文件配置

在这里插入图片描述

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

(2) application.yml文件配置

在这里插入图片描述

上述配置完成之后,idea会提示配置不正确,但是不影响项目的启动。
在确定配置信息无误之后,百度发现需要在pom文件中添加对log4j2.yml文件的依赖,
代码如下:
<dependency>
	<groupId>com.fasterxml.jackson.dataformat</groupId>
	<artifactId>jackson-dataformat-yaml</artifactId>
</dependency>

至此,成功解决。

发布了11 篇原创文章 · 获赞 2 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/SGdan_qi/article/details/103688885