springmvc 上传文件时的错误
Posted valarchie
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springmvc 上传文件时的错误相关的知识,希望对你有一定的参考价值。
使用springmvc上传文件一直失败,文件参数一直为null,
原来是配置文件没写成功。
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"> <!-- 最大上传尺寸 B单位 1M= 1024*1024 --> <property name="maxUploadSize" value="1048576"></property> </bean>
id=“multipartResolver” 一定要完全正确。
以上是关于springmvc 上传文件时的错误的主要内容,如果未能解决你的问题,请参考以下文章