| 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
 | | server: |  |   port: 8080 |  |   tomcat: |  |     uri-encoding: utf-8 |  |   |  | spring: |  |   profiles: |  |     active: prod |  |   |  |   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: com.xcong.excoin.*.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 | 
 |