Springboot整合fastdfs實現(xiàn)分布式文件存儲
更新時間:2023年08月23日 11:46:52 作者:青春不散場
本文主要介紹了Springboot整合fastdfs實現(xiàn)分布式文件存儲,詳細闡述了Springboot應用程序如何與FastDFS進行集成及演示了如何使用Springboot和FastDFS實現(xiàn)分布式文件存儲,感興趣的可以了解一下
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、添加配置項
# fdfs配置
fdfs:
connect-timeout: 2000 # 連接服務器超時時間
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
4、FastDFS客戶端工具
@Slf4j
public class FastDFSClient {
//分片客戶端
private static TrackerClient trackerClient;
//分片服務端
private static TrackerServer trackerServer;
//存儲桶客戶端
private static StorageClient storageClient;
//存儲桶服務端
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);
}
//獲取存儲器
@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);
}
// 獲取存儲器的URL
@SneakyThrows
public static String getTrackerUrl() {
return "http://"+trackerServer.getInetSocketAddress().getHostString()+":"
+ClientGlobal.getG_tracker_http_port()+"/";
}
@Data
public static class FastDFSFile {
//文件名
private String name;
//文件內容
private byte[] content;
//文件拓展名
private String ext;
//文件的md5
private String md5;
//文件做著
private String author;
}
}到此這篇關于Springboot整合fastdfs實現(xiàn)分布式文件存儲的文章就介紹到這了,更多相關Springboot fastdfs分布式文件存儲內容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!
相關文章
SpringMVC 中HttpMessageConverter簡介和Http請求415 的問題
本文介紹且記錄如何解決在SpringMVC 中遇到415 Unsupported Media Type 的問題,并且順便介紹Spring MVC的HTTP請求信息轉換器HttpMessageConverter2016-07-07
SpringBoot多數(shù)據(jù)源配置的終極解決方案
在微服務架構和復雜業(yè)務場景中,一個Spring?Boot應用連接多個數(shù)據(jù)庫的需求日益普遍,本文將深入剖析Spring?Boot自動配置的底層邏輯,揭示多數(shù)據(jù)源場景下的典型陷阱,并提供一套生產級解決方案,希望對大家有一定的幫助2025-05-05

