티스토리 뷰
SW개발/Spring Framework
Caused by: java.lang.IllegalArgumentException: LoggerFactory is not a Logback LoggerContext but Logback is on the classpath
개소왕 2019. 8. 17. 17:17Caused by: java.lang.IllegalArgumentException: LoggerFactory is not a Logback LoggerContext but Logback is on the classpath. Either remove Logback or the competing implementation (class org.slf4j.impl.SimpleLoggerFactory loaded from file:/C:/Users/dellw/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-simple/1.7.28/cf5f2cf3c31e0e41b68d932d756398a1238d4456/slf4j-simple-1.7.28.jar). If you are using WebLogic you will need to add 'org.slf4j' to prefer-application-packages in WEB-INF/weblogic.xml: org.slf4j.impl.SimpleLoggerFactory
프로젝트가 이미 의존성 logback 에 대한 의존성을 가지고 있는데 slf4-simple 을 추가로 연결했을때 나타나는 오류
slf4j 는 한가지 구현체에 대한 의존성만 추가 가능하다.
* 해결
silf4-simple 에 대한 의존성을 제외. logback 만 남김