您的位置:首页 > 理论基础 > 计算机网络

HTTP Status 400 - Required CommonsMultipartFile parameter 'files' is not present

2017-11-06 22:45 681 查看

HTTP Status 400 - Required CommonsMultipartFile parameter 'files' is not present

type Status report

message Required CommonsMultipartFile parameter 'files' is not present

description The request sent by the client was syntactically incorrect.

Apache Tomcat/8.0.29

主要原始是我在springMvc配置文件中,少配置了一个参数

错误示例:没有定义id="

multipartResolver

"

<!--上传文件的解析数据-->
<bean  class="org.springframework.web.multipart.commons.CommonsMultipartResolver">


正确示例:

<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: