Flutter开发App的未来及其在各行业的应用潜力分析
1561
2022-12-20
springboot多文件上传实现使用postman测试多文件上传接口
使用postman测试多文件上传接口
1、创建测试类(FileController.java)
package com.jeff.controller;
import java.io.File;
import java.io.IOException;
import java.util.List;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframehttp://work.web.bind.annotation.RestController;
import org.springframework.web.multipart.MultipartFile;
@RestController
public class FileController {
@PostMapping("/upload")
public String upload(@RequestParam("files") List
if (files.isEmpty()) {
return "上传失败,未选择文件";
}
for (MultipartFile file : files) {
String fileName = file.getOriginalFilename();
// 获取文件后缀名
String suffixName = fileName.substring(fileName.lastIndexOf("."));
// 重新生成文件名
String fName = System.currentTimeMillis() + suffixName;
System.out.println("文件名:" + fName);
String filePath = "F:\\Jeff\\project\\workspace\\mavenDemo\\src\\main\\resources\\static\\";
File dest = new File(filePath + fName);
try {
file.transferhttp://To(dest);
System.out.println(fName + "上传成功!");
} catch (IOException e) {
System.out.println(fName + "上传异常!" + e);
return "error";
}
}
return "success";
}
}
2、使用postman测试多文件上传接口(选择多个文件)
3、查看项目路径
4、如果报下图错误,请查看 解决方法
解决方法:The field files exceeds its maximum permitted size of 1048576 bytes
错误原因:
SpringBoot的默认上传文件的大小是1M,如果上传的文件超过了1M就会出现这样的错误
解决方法:
在application.properties配置文件中设置上传的文件大小限制,即可解决
# 上传文件总的最大值
spring.servlet.multipart.max-request-size=10MB
# 单个文件的最大值
spring.servlet.multipart.max-file-size=10MB
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~