SpringBoot:整合FastDFS
一.pom.xml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | <?xml version= "1.0" encoding= "UTF-8" ?> <project xmlns= "http://maven.apache.org/POM/4.0.0" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation= "http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" > <modelVersion> 4.0 . 0 </modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version> 2.2 . 6 .RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>com.wj</groupId> <artifactId>fastdsf-boot</artifactId> <version> 0.0 . 1 -SNAPSHOT</version> <name>fastdsf-boot</name> <description>Demo project for Spring Boot</description> <properties> <java.version> 1.8 </java.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency> <dependency> <groupId>com.github.tobato</groupId> <artifactId>fastdfs-client</artifactId> <version> 1.26 . 2 </version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> <exclusions> <exclusion> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project> |
二.application.yml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #fastdfs 配置 fdfs: so-timeout: 150000 connect-timeout: 150000 #超时时间 thumb-image: width: 150 height: 150 tracker-list: - 111.111 . 111.111 : 22122 #ip:端口号 spring: thymeleaf: prefix: classpath:/templates/ servlet: multipart: max-file-size: 50MB #单次单个文件最大大小 max-request-size: 50MB #单次上传所有文件的总大小<br> #注意,这里springboot默认配置的大小是1MB和10MB,可能不够用,具体参考MultipartProperties.java |
三.FastUtil.java 前提先将Nginx和FastDFS整合
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | @Component public class FastUtil { private final Logger logger = LoggerFactory.getLogger(FastUtil. class ); @Autowired private FastFileStorageClient fastFileStorageClient; /** * 文件上传 * 最后返回fastDFS中的文件名称; * * @param bytes 文件字节 * @param fileSize 文件大小 * @param extension 文件扩展名 * @return fastDfs路径 */ public String uploadFile( byte [] bytes, long fileSize, String extension) { ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream(bytes); StorePath storePath = fastFileStorageClient.uploadFile(byteArrayInputStream, fileSize, extension, null ); return "http://111.111.111.111/" +storePath.getFullPath(); } public byte [] downloadFile(String group,String path) throws IOException { DownloadByteArray downloadByteArray = new DownloadByteArray(); byte [] bytes = fastFileStorageClient.downloadFile(group, path, downloadByteArray); return bytes; } } |
四.配置类 FdfsConfig.java
1 2 3 4 5 6 | @Configuration @Import (FdfsClientConfig. class ) @EnableMBeanExport (registration = RegistrationPolicy.IGNORE_EXISTING) public class FdfsConfig { } |
五.Controller
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | @RestController public class FdfsController { @Autowired private FastUtil fastDFSClientWrapper; private final Logger logger = LoggerFactory.getLogger(FdfsController. class ); @PostMapping ( "/upload" ) @ResponseBody public String upload(MultipartFile file) throws Exception { byte [] bytes = new byte [ 0 ]; try { bytes = file.getBytes(); } catch (IOException e) { logger.error( "获取文件错误" ); e.printStackTrace(); } //获取源文件名称 String originalFileName = file.getOriginalFilename(); //获取文件后缀--.doc String extension = originalFileName.substring(originalFileName.lastIndexOf( "." ) + 1 ); String fileName = file.getName(); //获取文件大小 long fileSize = file.getSize(); System.out.println(originalFileName + "==" + fileName + "==" + fileSize + "==" + extension + "==" + bytes.length); String string = fastDFSClientWrapper.uploadFile(bytes, fileSize, extension); return string; } } |
六.前端页面 index.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | <!DOCTYPE html> <html xmlns= "http://www.w3.org/1999/xhtml" xmlns:th= "http://www.thymeleaf.org" xmlns:sec= "http://www.thymeleaf.org/thymeleaf-extras-springsecurity3" > <head> <meta charset= "UTF-8" /> <title>Insert title here</title> </head> <body> <h1 th:inlines= "text" >文件上传</h1> <form action= "upload" method= "post" enctype= "multipart/form-data" > <p>选择文件: <input type= "file" name= "file" /></p> <p><input type= "submit" value= "提交" /></p> </form> </body> </html> |
七.开始上传、
最后在页面上返回一个URL,可以直接访问
参考博客:
https://www.cnblogs.com/dalianpai/p/11838009.html
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· 【自荐】一款简洁、开源的在线白板工具 Drawnix