본문 바로가기
빅데이터/oozie

[oozie][slf4j] SLF4J: Class path contains multiple SLF4J bindings. 오류

by hs_seo 2019. 10. 25.

SLF4J를 이용하는 여러 가지 라이브러리를 함께 이용할 때 다음과 같은 오류가 발생할 수 있습니다. 해결 방법은 중복된 라이브러리를 정리해 주는 것입니다.

  • 설치되어 있는 상태라면
    • 아래의 경우 중복된 2개의 라이브러리중 하나를 삭제(rm) 또는 이동(mv)
    • 예를 들면 rm /usr/lib/oozie/lib/slf4j-simple-1.6.6.jar 명령으로 jar 파일 삭제
  • 빌드가 가능한 상황이라면
    • 메이븐이나 그래들의 명령을 이용해 중복된 라이브러리는 빼고 로드하도록 설정
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/usr/lib/oozie/lib/slf4j-log4j12-1.6.6.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/usr/lib/oozie/lib/slf4j-simple-1.6.6.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 [org.slf4j.impl.Log4jLoggerFactory]

 

반응형