wangting
2023-08-25 d74e5663908f6530ee32d074b1a747c49cb05589
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:
  datasource:
    url: ${blade.datasource.prod.url}
    username: ${blade.datasource.prod.username}
    password: ${blade.datasource.prod.password}
    servlet:
      multipart:
        max-file-size: 500MB
        max-request-size: 500MB
 
#服务器端口
server:
  port: 36007
 
#默认对象存储配置
oss:
  enabled: true
  name: minio
  tenant-mode: true
  endpoint: http://dev.vci-tech.com:39000
  access-key: TyEeBAJiAKDvHICUVAoH
  secret-key: Reo4wW8EWF4gSizUmVsNjWfbDZzR3rBYFn5Jehd9
  bucket-name: vci-ubcs
 
#关闭驼峰命名映射
mybatis-plus:
  configuration:
    map-underscore-to-camel-case: false