码迷,mamicode.com
首页 > 编程语言 > 详细

使用postman模拟上传文件到springMVC的坑:the request was rejected because no multipart boundary was found

时间:2016-10-16 16:43:07      阅读:3967      评论:0      收藏:0      [点我收藏+]

标签:

参考该文解决问题:http://blog.csdn.net/sanjay_f/article/details/47407063

 

报错

threw exception [Request processing failed; nested exception is org.springframework.web.multipart.MultipartException: Could not parse multipart servlet request; nested exception is org.apache.commons.fileupload.FileUploadException: the request was rejected because no multipart boundary was found] with root cause
org.apache.commons.fileupload.FileUploadException: the request was rejected because no multipart boundary was found

技术分享

不手动添加content-type后就行了:此时访问成功。

技术分享

 

 

问题的原因

You shouldNEVERset that header yourself. We set the header properly with the boundary. If you set that header, we won‘t and your server won‘t know what boundary to expect (since it is added to the header). Remove your custom Content-Type header and you‘ll be fine.

src: 

http://stackoverflow.com/questions/17415084/multipart-data-post-using-Python-requests-no-multipart-boundary-was-found

简称。。制作多情。。。头部会自动加好,不要画足添蛇。。。。。。。。。

 

使用postman模拟上传文件到springMVC的坑:the request was rejected because no multipart boundary was found

标签:

原文地址:http://www.cnblogs.com/ljdblog/p/5966675.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!