Crunchy
2025-06-14 b2f31607cbe26d721cd7514b619162b3e355b1aa
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
spring:
  servlet:
    multipart:
      max-file-size: 2MB # 单个文件大小
      max-request-size: 1024MB # 一次请求总大小
  profiles:
    active: dev
 
mybatis-plus:
  configuration:
    log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl # 关闭mybatis-plus日志
  global-config:
    banner: off # 关闭mybatis-plus启动图标
  type-aliases-package: com.wms_admin.*.entity
  mapper-locations: classpath:mapper/*.xml
 
avatar: /defaultAvatar.png
 
feign:
  client:
    config:
      default:
        connectTimeout: 2000
        readTimeout: 3000
        loggerLevel: FULL
  httpclient:
    enabled: false # 关闭 httpclient
  okhttp:
    enabled: true # 开启 okhttp