the request doesn‘t contain a multipart/form-data or multipart/mixed stream, content type header is
目前问题
异常报错如下:
Request processing failed; nested exception is org.apache.commons.fileupload.FileUploadBase$InvalidContentTypeException: the request doesn’t contain a multipart/form-data or multipart/mixed stream, content type header is null
排查原因:
因为自己的粗心,在form表单提交的时候没有把提交方式method设置为post导致的。(因为我的表单是为了文件上传,enctype=“multipart/form-data”,需要设置为post方式提交)
参考博客:https://www.cnblogs.com/yeyuchangfeng/p/4689855.html
上面这篇对enctype的两种编码类型介绍的很详细。
版权声明:本文为weixin_42383981原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。