Crunchy
2024-04-23 0a49707dd4dbacf83935b8b00af27cdf29c02b10
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
server:
  port: 8001
spring:
  profiles:
    active: dev
  jackson: # 全局时间处理 LocalDateTime时间序列号
    date-format: yyyy-MM-dd HH:mm:ss
    time-zone: GMT+8
  servlet:
    multipart:
      max-file-size: 20MB # 单个文件大小
      max-request-size: 1024MB # 一次请求文件总大小
 
mybatis-plus:
  type-aliases-package: com.yuanchu.mom.pojo
  mapper-locations: classpath*:/mapper/*Mapper.xml
  global-config:
    banner: off # 关闭mybatis-plus启动图标
 
feign:
  client:
    config:
      default:
        connectTimeout: 2000
        readTimeout: 3000
        loggerLevel: FULL
  httpclient:
    enabled: false # 关闭 httpclient
  okhttp:
    enabled: true # 开启 okhttp
 
outPath: D:\项目文件存储\image