An open API service indexing awesome lists of open source software.

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

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;
```