本文主要是介绍spring boot使用log4j2配置,以及class path contains multiple slf4j bindings错误处理,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
spring boot 默认使用logback日志,但现今主流日志框架为log4j2,我们需要对配置文件做一些简单修改。
首先修改pom.xml排除系统自带的日志依赖,增加log4j2依赖。
<parent><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-parent</artifactId><version>2.0.2.RELEASE</version>
</parent><properties><project.build.sourceEncoding>UTF-8</project.build.sourceEncoding><project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding><java.version>1.8</java.version>
</properties><dependencies><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><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-log4j2</artifactId></dependency>
</dependencies>
Spring一旦发现classpath下的jar文件,就会自动配置log4j2。我们需要添加 log4j2.xml
或者 (log4j2.properties
) 到src/main/resources文件夹下。
<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="WARN" monitorInterval="30"><Properties><Property name="LOG_PATTERN">%d{yyyy-MM-dd'T'HH:mm:ss.SSSZ} %p %m%n</Property><Property name="APP_LOG_ROOT">c:/temp</Property></Properties><Appenders><Console name="Console" target="SYSTEM_OUT" follow="true"><PatternLayout pattern="${LOG_PATTERN}" /></Console><RollingFile name="appLog"fileName="${APP_LOG_ROOT}/SpringBoot2App/application.log"filePattern="${APP_LOG_ROOT}/SpringBoot2App/application-%d{yyyy-MM-dd}-%i.log"><PatternLayout pattern="${LOG_PATTERN}" /><Policies><SizeBasedTriggeringPolicy size="19500KB" /></Policies><DefaultRolloverStrategy max="1" /></RollingFile></Appenders><Loggers><Logger name="com.howtodoinjava.app" additivity="false"><AppenderRef ref="appLog" /><AppenderRef ref="Console" /></Logger><Root level="debug"><AppenderRef ref="Console" /></Root></Loggers>
</Configuration>
之后我们运行程序,发现程序报错“class path contains multiple slf4j bindings”。具体报错信息如下:
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/opt/app/top-media-frag/lib/logback-classic-1.0.13.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/opt/app/top-media-frag/lib/slf4j-log4j12-1.7.5.jar!/org/slf4j/impl/StaticLoggerBinder.class]
Maven管理的纯Spring工程中,原本是使用log4j2打log的,结果依赖的库中又另外引用了logback文件(logback与原来的log4j只能二选一),导致配置失效。
使用idea查看依赖图,发现spring-boot-start-logging仍然存在。在maven插件中检查各个依赖项,发现不只spring-boot-starter-web依赖spring-boot-start-logging,spring-boot-starter-actuator也同样依赖spring-boot-start-logging,在pom中排除spring-boot-starter-actuator对spring-boot-start-logging的依赖,重新运行程序,没有报错,运行成功。
Spring虽然实现了一定程度的自动化配置,但是对日志框架配置问题还没有很好的解决,再多个组件依赖日志的时候,还需要手动取排除。
这篇关于spring boot使用log4j2配置,以及class path contains multiple slf4j bindings错误处理的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!