本文中所述SpringBoot基于1.4.0.RELEASE版本
基本方法就是將compile范圍依賴的spring-boot-starter-logging排除委粉,然后依賴spring-boot-starter-log4j即可
build.gradle中配置如下
configurations {
compile.exclude module: 'spring-boot-starter-logging'//排除對(duì)默認(rèn)logging的依賴
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile("org.springframework.boot:spring-boot-starter-web:1.4.0.RELEASE")
//添加對(duì)log4j starter的依賴蓬抄。
compile("org.springframework.boot:spring-boot-starter-log4j:1.3.7.RELEASE")
}
或者
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile("org.springframework.boot:spring-boot-starter-web:1.4.0.RELEASE") {
exclude module:'spring-boot-starter-logging'
}
//添加對(duì)log4j starter的依賴。
compile("org.springframework.boot:spring-boot-starter-log4j:1.3.7.RELEASE")
}