一、springboot与fastdfs文件服务的整合
1. 引入 redis 依赖包
<dependency>
<groupId>com.github.tobato</groupId>
<artifactId>fastdfs-client</artifactId>
<version>1.26.7</version>
</dependency>
2.yml文件中配置fastdfs
##############################################################
#
#fastdfs的配置
#
fdfs:
connect-timeout: 30 #连接超时实际
so-timeout: 30 #读取超时实际
tracker-list: 192.168.1.6:22122 #tracker服务所在的ip地址和端口号
3.实现springboot客户端代码实现
(1)创建service接口
import org.springframework.web.multipart.MultipartFile;
public interface FdfsService {
public String upload(MultipartFile file, String fileExtName) throws Exception;
}
(2)创建service接口实现类
import com.github.tobato.fastdfs.domain.fdfs.StorePath;
import com.github.tobato.fastdfs.