springboot 을 실행 할 때 기본 loggback 과 slf4j 의 의존 간 충돌
1879 단어 Sprong-Boot
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/C:/me/F/MAVEN/MyRepos/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/C:/me/F/MAVEN/MyRepos/org/apache/logging/log4j/log4j-slf4j-impl/2.13.3/log4j-slf4j-impl-2.13.3.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
SLF4J: Actual binding is of type [ch.qos.logback.classic.util.ContextSelectorStaticBinder]
클래스 경 로 는 여러 개의 SLF4J 바 인 딩 을 포함 합 니 다.
원인:
jar 가방 충돌
해결:
해결 방법 은 간단 하 다. 버 린 이상
jar
,그럼 하나 빼 자 jar
싸 면 돼.관건 은 어느 것 을 배제 하 느 냐 하 는 것 이다 jar
,여기 주의 하 세 요. 만약 당신 이 사용 한 것 이 logback
이 라면. 로그, 반드시 제거 slf4j-log4j12
가방, 배제 하지 마 세 요 logback-classic
가방같은 이치 로...내 가 쓸 거 야 log4j logback-classic
싸다.
org.springframework.boot
spring-boot-starter
org.springframework.boot
spring-boot-starter-logging
그리고 웹 스타트.
org.springframework.boot
spring-boot-starter-web
org.springframework.boot
spring-boot-starter-logging
충돌 이 사라지다.