| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 | | <dependencies> |  |     <!-- 全局排除--> |  |     <dependency> |  |         <groupId>org.springframework.boot</groupId> |  |         <artifactId>spring-boot-starter-json</artifactId> |  |         <exclusions> |  |             <exclusion> |  |                 <groupId>*</groupId> |  |                 <artifactId>*</artifactId> |  |             </exclusion> |  |         </exclusions> |  |     </dependency> |  |     <dependency> |  |         <groupId>org.springframework.boot</groupId> |  |         <artifactId>spring-boot-starter-logging</artifactId> |  |         <exclusions> |  |             <exclusion> |  |                 <groupId>*</groupId> |  |                 <artifactId>*</artifactId> |  |             </exclusion> |  |         </exclusions> |  |     </dependency> |  | </dependencies> | 
 |