SpringBoot--\"\"Required request part 'file' is not present\"\"

本秂侑毒 提交于 2020-01-19 16:57:47

今天做图片上传的功能,做好之后进行测试,一直提示“"Required request part 'file' is not present"”

在网上找各种方式,有的说配置文件,有的说别用自带的文件解析类MultipartFileResolver都没有解决我的问题。

后来仔细看发送的请求

复制代码
------WebKitFormBoundaryFlaeSM38XP7nFtBi
Content-Disposition: form-data; name="fileUpload"; filename="bb.jpg"
Content-Type: image/jpeg
------WebKitFormBoundaryFlaeSM38XP7nFtBi--注意:这里是name="fileUpload",我用的Advanced Rest Client模拟发送http请求,它把名字设置成了这个,而我的controller是
@PostMapping("image")
    public ResponseEntity<String> upload(@RequestParam("file") MultipartFile file){
        System.out.println("请求到来" + file.getName());
        return ResponseEntity.ok(uploadService.uploadImage(file));
    }

两边的文件名称不对应,导致这个问题,所以controller的

@RequestParam("file") 改为@RequestParam("fileUpload")就OK!
复制代码

转载于:https://www.cnblogs.com/runwithraining/p/12114373.html

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!