SpringBoot Resolved [org.springframework.web.multipart.support.MissingServletRequestPartException: Required request part 'file' is not present]

发布时间 2023-11-30 17:44:47作者: Cold的窝

Spring Boot Resolved [org.springframework.web.multipart.support.MissingServletRequestPartException: Required request part 'file' is not present]

IDEA报错信息
img

这个错误主要主要是指 后端通过@RequestParam("file")注解标注的MultipartFile参数并没有获取到文件参数为null导致的
也就是你在请求体中没有找到file这个字段,所以这个错误就出现了

img

这里为了复现这个错误,我用postman发送一个post请求,并在请求体中没有找到file这个字段,然后就报了这个错误

解决方法

@RequestParam("file") 中的file跟请求体中的键值保持一致就行了

img

然后就可以正常的上传文件了

在from表单中也是同理,因为inputname属性就是请求体中的键值,只要跟@RequestParam("file")file保持一致就行了

例如:

<input type="file" name="file">

这样后端就可以拿到文件了
img