# fastdfs-spring-boot-starter **Repository Path**: log4j/fastdfs-spring-boot-starter ## Basic Information - **Project Name**: fastdfs-spring-boot-starter - **Description**: FastDFS Starter - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 3 - **Forks**: 6 - **Created**: 2020-09-26 - **Last Updated**: 2025-04-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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; ```