主要报错语句为:
The current request is not a multipart request
就是说当前这个请求不是一个multipart request,也就是说不是上传文件的请求。
那怎么办呢?
这里我们需要知道一点,spring在处理入参的时候, 遇到MultipartFile相关就会先去校验。(在controller中会用MultipartFile接受参数)
那怎么校验呢?
1.当在form中提交的信息包含图片的时候,必须要用POST方法。
如果是POST方法,它就会深入去检测请求。
2. 请求的contentType 必须设置为以 “multipart/“ 开头。
此外,只有当当前请求的contentType是 “multipart/“ 的时候,才会将此请求当做文件上传的请求。
因此还需要将请求的contentType 设置为“multipart”开头(通常是multipart/form-data)**。**
这里分两种情况:
2.1当用form上传的时候
在from表单的属性设置里面加上enctype=”multipart/form-data”
2.2当用ajax上传的时候
用ajax提交的时候在页面设置
满足上面两个条件,才会将请求当做文件上传的请求。
===============================================================================
通过Postman上传文件出现如下错误信息:
“error”: “Internal Server Error”,
“exception”: “org.springframework.web.multipart.MultipartException”,
“message”: “Current request is not a multipart request”, “path”: “/upload”
错误原因:Headers填写错误,可能是之前选错x-www-form-urlencoded或其他类型。
解决方案:
第一步,删除Header中关于Content-Type的配置。
第二,Body中的配置选择如下:
然后请求,接口解决上述问题。
对应的Controller实现如下:
/** * 从Excel导入会员列表 */ @RequestMapping(value = "/import1", method = RequestMethod.POST) @ResponseBody public void importMemberList(@RequestPart("file") MultipartFile file) throws IOException { }
注意,MultipartFile的名字要与PostMan中file保持一致。或者
@RequestMapping(value = "OrderRefund", method= RequestMethod.POST) public @ResponseBody Object OrderRefund(@RequestParam("file") MultipartFile[] files, HttpServletRequest request, HttpServletResponse response) throws IOException { }
标签:请求,form,request,报错,multipart,MultipartFile,上传,Postman From: https://www.cnblogs.com/Fooo/p/17284528.html