【发布时间】:2015-08-27 19:49:35
【问题描述】:
我认为 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")
【问题讨论】:
标签: java logging spring-security spring-boot dependency-management