1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
  | server: 
 |    port: 8080 
 |    tomcat: 
 |      uri-encoding: utf-8 
 |    
 |  spring: 
 |    profiles: 
 |      active: test 
 |    
 |    servlet: 
 |      multipart: 
 |        max-file-size: 10MB 
 |        max-request-size: 100MB 
 |    
 |    thymeleaf: 
 |      cache: false 
 |    
 |    jackson: 
 |      date-format: yyyy-MM-dd HH:mm:ss 
 |      time-zone: GMT+8 
 |    
 |    aop: 
 |      proxy-target-class: true 
 |    
 |  mybatis-plus: 
 |    type-aliases-package: cc.mrbird.febs.*.entity 
 |    mapper-locations: classpath:mapper/*/*.xml 
 |    configuration: 
 |      jdbc-type-for-null: null 
 |    global-config: 
 |      banner: false 
 |      db-config: 
 |        select-strategy: not_empty 
 |    
 |  logging: 
 |    level: 
 |      com: 
 |        baomidou: 
 |          mybatisplus: 
 |            core: 
 |              metadata: 
 |                TableInfoHelper: error 
 |  
  |