春天需要
<bean id="multipartResolver" />
bean处理文件上载。
您应该在
application context文件中注册该bean 。
Content-Type也应该有效。就你而言
enctype="multipart/form-data"
编辑1:
您可以将上载和内存大小赋予bean属性:
<bean id="multipartResolver" > <!-- max upload size in bytes --> <property name="maxUploadSize" value="20971520" /> <!-- 20MB --> <!-- max size of file in memory (in bytes) --> <property name="maxInMemorySize" value="1048576" /> <!-- 1MB --> </bean>



