美文网首页
Springboot 多文件上传

Springboot 多文件上传

作者: 木人呆呆 | 来源:发表于2022-06-20 19:04 被阅读0次
@ApiOperation(value = "批量上传文件")
    @RequestMapping(value = "uploadBatch", method = RequestMethod.POST)
    public String fileUpload(@RequestParam("file") MultipartFile[] files){
        for(MultipartFile multipartFile:files){
            log.info(multipartFile.getOriginalFilename());
        }
        return "success";
    }

测试方法:重点的参数已经圈出来了


image.png image.png

相关文章

网友评论

      本文标题:Springboot 多文件上传

      本文链接:https://www.haomeiwen.com/subject/nbvjvrtx.html