SLF4J: Class path contains multiple SLF4J bindings
导致原因为,springboot内置log包冲突l
排除springboot中默认logback日志
configurations {
compile.exclude module: 'spring-boot-starter-logging'
compile.exclude module: 'commons-logging'
}
nnjk
导致原因为,springboot内置log包冲突l
排除springboot中默认logback日志
configurations {
compile.exclude module: 'spring-boot-starter-logging'
compile.exclude module: 'commons-logging'
}