一、快速開始
1、添加依賴
<dependency>
<groupId>com.luhuiguo</groupId>
<artifactId>fastdfs-spring-boot-starter</artifactId>
<version>0.2.0</version>
</dependency>
<dependency>
<groupId>org.csource</groupId>
<artifactId>fastdfs-client-java</artifactId>
<version>1.27-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
2、添加配置項(xiàng)
# fdfs配置
fdfs:
connect-timeout: 2000 # 連接服務(wù)器超時(shí)時(shí)間
so-timeout: 3000
tracker-list: ${ip}:${port}
http:
path: http://${ip}:${port}/ #http鏈接前綴
3、新建 fdfs_client.conf(可忽略)
connect_timeout = 60
network_timeout = 60
charset = UTF-8
http.tracker_http_port = 8080
http.anti_steal_token = no
http.secret_key = 123456
tracker_server = 192.168.53.85:22122
2、FastDFS客戶端工具
@Slf4j
public class FastDFSClient {
//分片客戶端
private static TrackerClient trackerClient;
//分片服務(wù)端
private static TrackerServer trackerServer;
//存儲(chǔ)桶客戶端
private static StorageClient storageClient;
//存儲(chǔ)桶服務(wù)端
private static StorageServer storageServer;
static {
try {
//引入配置
String filePath = new ClassPathResource("fdfs_client.conf").getFile().getAbsolutePath();;
ClientGlobal.init(filePath);
trackerClient = new TrackerClient();
trackerServer = trackerClient.getConnection();
storageServer = trackerClient.getStoreStorage(trackerServer);
} catch (Exception e) {
logger.error("FastDFS Client Init Fail!",e);
}
}
//文件上傳
@SneakyThrows
public static String[] upload(FastDFSFile file) {
NameValuePair[] meta_list = new NameValuePair[1];
meta_list[0] = new NameValuePair("author", file.getAuthor());
long startTime = System.currentTimeMillis();
String[] uploadResults = null;
storageClient = new StorageClient(trackerServer, storageServer);
uploadResults = storageClient.upload_file(file.getContent(), file.getExt(), meta_list);
if(null == uploadResults) return null;
String groupName = uploadResults[0];
String remoteFileName = uploadResults[1];
return uploadResults;
}
//獲取File
@SneakyThrows
public static FileInfo getFile(String groupName, String remoteFileName) {
storageClient = new StorageClient(trackerServer, storageServer);
return storageClient.get_file_info(groupName, remoteFileName);
}
//下載文件
@SneakyThrows
public static InputStream downFile(String groupName, String remoteFileName) {
storageClient = new StorageClient(trackerServer, storageServer);
byte[] fileByte = storageClient.download_file(groupName, remoteFileName);
InputStream ins = new ByteArrayInputStream(fileByte);
return ins;
}
//刪除文件
@SneakyThrows
public static void deleteFile(String groupName, String remoteFileName) {
storageClient = new StorageClient(trackerServer, storageServer);
int i = storageClient.delete_file(groupName, remoteFileName);
logger.info("delete file successfully!!!" + i);
}
//獲取存儲(chǔ)器
@SneakyThrows
public static StorageServer[] getStoreStorages(String groupName){
return trackerClient.getStoreStorages(trackerServer, groupName);
}
//獲取FetchStorages
@SneakyThrows
public static ServerInfo[] getFetchStorages(String groupName,String remoteFileName) {
return trackerClient.getFetchStorages(trackerServer, groupName, remoteFileName);
}
// 獲取存儲(chǔ)器的URL
@SneakyThrows
public static String getTrackerUrl() {
return "http://"+trackerServer.getInetSocketAddress().getHostString()+":"
+ClientGlobal.getG_tracker_http_port()+"/";
}
@Data
public static class FastDFSFile {
//文件名
private String name;
//文件內(nèi)容
private byte[] content;
//文件拓展名
private String ext;
//文件的md5
private String md5;
//文件做著
private String author;
}
}
文章來(lái)源地址http://www.zghlxwxcb.cn/news/detail-668015.html
文章來(lái)源:http://www.zghlxwxcb.cn/news/detail-668015.html
到了這里,關(guān)于Springboot整合fastdfs-分布式文件存儲(chǔ)的文章就介紹完了。如果您還想了解更多內(nèi)容,請(qǐng)?jiān)谟疑辖撬阉鱐OY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!