尝试在SpringBoot + Gradle项目中启用log4j
不如Maven常见。所以,这就是我面临的问题:
gradle clean bootRun --stacktrace
:clean
:compileJava
:processResources
:classes
:findMainClass
:bootRun
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/home/mdesales/.m2/repository/org/slf4j/slf4j-log4j12/1.7.21/slf4j-log4j12-1.7.21.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/home/mdesales/.m2/repository/ch/qos/logback/logback-classic/1.1.7/logback-classic-1.1.7.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
SLF4J: Detected both log4j-over-slf4j.jar AND bound slf4j-log4j12.jar on the class path, preempting StackOverflowError.
SLF4J: See also http://www.slf4j.org/codes.html#log4jDelegationLoop for more details.
Exception in thread "main" java.lang.ExceptionInInitializerError
答案 0 :(得分:3)
您可以使用Gradle的依赖项解析功能来解析要加载的库版本。其中一个错误是关于要加载的Log4j的版本,它来自2个位置,如错误日志中所示。因此,对于每个库的名称,选择应该赢得哪个版本。
它的第二部分是完全排除spring-boot logging和logback classic的依赖项,它们负责默认设置SpringBoot的日志记录。以下块帮助了它。
configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
if (details.requested.name == 'log4j') {
details.useTarget 'log4j:log4j:1.2.+'
}
}
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
exclude group: 'org.springframework.boot', module: 'logback-classic'
}
最后,要添加的最后一个更改是log4j
和slf4j
依赖项的集合,它们将帮助您加载依赖项。
runtime group: 'org.slf4j', name: 'slf4j-api', version: '1.7.21'
runtime group: 'org.slf4j', name: 'jcl-over-slf4j', version: '1.7.21'
runtime group: 'org.slf4j', name: 'jul-to-slf4j', version: '1.7.21'
runtime group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.21'
runtime group: 'log4j', name: 'log4j', version: '1.2.17'
将其放在通常的目录src/main/resources/
下。
在这些之后,我得到了我需要的东西:日志输出是不同的,并使用我的log4j.xml上的属性。
$ SPRING_PROFILES_ACTIVE=dev gradle clean bootRun --stacktrace
:clean
:compileJava
:processResources
:classes
:findMainClass
:bootRun
2016-08-09 07:20:47,006 0 | INFO | context.annotation.AnnotationConfigApplicationContext.prepareRefresh#581 ["restartedMain" null] Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@15225245: startup date [Tue Aug 09 07:20:46 PDT 2016]; root of context hierarchy
2016-08-09 07:20:47,235 229 | INFO | internal.util.Version.<clinit>#30 ["background-preinit" null] HV000001: Hibernate Validator 5.2.4.Final
2016-08-09 07:20:47,440 434 | INFO | factory.annotation.AutowiredAnnotationBeanPostProcessor.<init>#155 ["restartedMain" null] JSR-330 'javax.inject.Inject' annotation found and supported for autowiring