1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| #服务器端口
| server:
| port: 36007
|
| #默认对象存储配置
| oss:
| enabled: true
| name: minio
| #tenant-mode为true,表示每个租户可以不同的存储的方式,需要在文件仓库配置里不同的租户,
| # 为false的时候,表示统一使用这个地方配置的内容
| tenant-mode: false
| endpoint: http://192.168.1.253:9000
| access-key: minioacc
| secret-key: miniosec
| bucket-name: bladex
| #关闭驼峰命名映射
| mybatis-plus:
| configuration:
| map-underscore-to-camel-case: false
|
|