12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #---------- OSS 项目 ----------#
- #---
- # 项目配置
- app:
- name: Spring Boot
- description: ${app.name} is a Spring Boot application
- # 服务配置
- server:
- address: 127.0.0.1
- port: 9090
- servlet:
- context-path: /api
- # OSS Object Storage Server 对象存储配置
- oss-confg:
- host: 3f352e8584.qicp.vip
- port: 15633
- accesskeyId: minio
- secretAccessKey: jP*K*WapB1
- spring:
- profiles:
- active: dev
- # 使用CGLIB实现AOP
- aop:
- # true:基于类的代理, false基于接口的代理
- proxy-target-class: true
- # -------------------- --------------------
- # OSS Object Storage Server 对象存储
- minio:
- # true:scheme为https,false:scheme为http
- secure: false
- endpoint: ${oss-confg.host}
- port: ${oss-confg.port}
- accesskeyId: ${oss-confg.accesskeyId}
- secretAccessKey: ${oss-confg.secretAccessKey}
- # 当stoage下的存储桶 buckets
- buckets:
- # 跟具体业务相关名称,对应如下的 buckets值
- product: product
|