Spring Boot 默认使用 Spring MVC 包装好的解析器进行上传。

    Controller 代码

    1. @Controller
    2. @RequestMapping(value = "/file")
    3. public class FileController {
    4. private static final Logger logger = LoggerFactory.getLogger(FileController.class);
    5. @RequestMapping(value = "upload")
    6. @ResponseBody
    7. public String upload(@RequestParam("testFile") MultipartFile file) {
    8. if (file.isEmpty()) {
    9. return "文件为空";
    10. }
    11. // 获取文件名
    12. String fileName = file.getOriginalFilename();
    13. logger.info("上传的文件名为:" + fileName);
    14. // 获取文件的后缀名
    15. String suffixName = fileName.substring(fileName.lastIndexOf("."));
    16. logger.info("上传的后缀名为:" + suffixName);
    17. // 文件上传路径
    18. String filePath = "d:/testFile/";
    19. // 解决中文问题,liunx 下中文路径,图片显示问题
    20. // fileName = UUID.randomUUID() + suffixName;
    21. File dest = new File(filePath + fileName);
    22. // 检测是否存在目录
    23. if (!dest.getParentFile().exists()) {
    24. dest.getParentFile().mkdirs();
    25. }
    26. try {
    27. file.transferTo(dest);
    28. return "上传成功";
    29. } catch (IllegalStateException e) {
    30. e.printStackTrace();
    31. } catch (IOException e) {
    32. e.printStackTrace();
    33. }
    34. return "上传失败";
    35. }
    36. }

    配置

    1. spring.http.multipart.enabled=true #默认支持文件上传.
    2. spring.http.multipart.file-size-threshold=0 #支持文件写入磁盘.
    3. spring.http.multipart.location= # 上传文件的临时目录
    4. spring.http.multipart.max-file-size=1Mb # 最大支持文件大小
    5. spring.http.multipart.max-request-size=10Mb # 最大支持请求大小