https://github.com/pig-mesh/fastdfs-spring-boot-starter
fastdfs spring boot start
https://github.com/pig-mesh/fastdfs-spring-boot-starter
fastdfs nginx oss spring-boot
Last synced: about 2 months ago
JSON representation
fastdfs spring boot start
- Host: GitHub
- URL: https://github.com/pig-mesh/fastdfs-spring-boot-starter
- Owner: pig-mesh
- Created: 2020-03-01T12:28:36.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-01T12:29:05.000Z (over 5 years ago)
- Last Synced: 2025-04-10T18:07:04.281Z (about 2 months ago)
- Topics: fastdfs, nginx, oss, spring-boot
- Language: Java
- Homepage:
- Size: 7.81 KB
- Stars: 11
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Spring Boot FastDFS Starter
Usage:
Add dependency **fastdfs-spring-boot-starter** to **pom.xml**
```xml
com.pig4cloud.fastdfs
fastdfs-spring-boot-starter
0.4.0
```Config **application.yml**
```yml
fdfs:
connect-timeout: 2000
so-timeout: 3000
tracker-list:
- 10.1.5.85:22122
- 10.1.5.86:22122
```Inject **FastFileStorageClient**
```java
@Autowired
private FastFileStorageClient storageClient;
```