# spring-boot-starter-oss
**Repository Path**: alexl2/spring-boot-starter-oss
## Basic Information
- **Project Name**: spring-boot-starter-oss
- **Description**: spring-boot-starter自动注入阿里云OSS服务
- **Primary Language**: Java
- **License**: Apache-2.0
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2017-12-14
- **Last Updated**: 2020-12-19
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# spring-boot-starter-oss
spring-boot-starter自动注入阿里云OSSClient。
## 使用方式
1. POM.xml
```
com.aliyun.oss
aliyun-sdk-oss
2.8.3
com.payscn.oss
spring-boot-starter-oss
0.0.1
```
2. application.properties
```
oss.endpoint=<>
oss.accessKey=<>
oss.accessKeySecret=<>
```
3. 这里是列表文本使用OSSClient
```
@Autowired
private OSSClient ossClient;
```