Spring Boot 全局排除 spring-boot-starter-logging 依赖
<!--全局排除spring-boot-starter-logging内的所有依赖-->
<dependency>
<groupId></groupId>
<artifactId>spring-boot-starter-logging</artifactId>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>