本文介紹了LoggerFactory不是Logback LoggerContext,但Logback位于類路徑上的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我認為Spring-Boot-starter-Security中的某些模塊與log4j沖突,但我不知道是哪個模塊。
我的Gradle依賴如下:
compile("org.springframework.boot:spring-boot-starter-thymeleaf")
compile("org.springframework.boot:spring-boot-starter-security"){
exclude module: "spring-boot-starter-logging"
}
compile "org.apache.logging.log4j:log4j-api"
compile "org.apache.logging.log4j:log4j-core"
compile "org.apache.logging.log4j:log4j-slf4j-impl"
compile('org.apache.poi:poi:3.10.1')
compile('org.apache.poi:poi-ooxml:3.10.1')
testCompile("junit:junit")
推薦答案
我想明白了
compile("org.springframework.boot:spring-boot-starter-security"){
exclude module: "spring-boot-starter-logging"
exclude module: "logback-classic"
}
compile("org.springframework.boot:spring-boot-starter-thymeleaf"){
exclude module: "logback-classic"
}
這篇關于LoggerFactory不是Logback LoggerContext,但Logback位于類路徑上的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,