spring 支持文件上传配置

来源:互联网 发布:买p2p问题平台数据 编辑:程序博客网 时间:2024/05/16 15:22

spring 文件上传时遇到错误信息:

Servlet.service() for servlet [springmvc] in context with path [/**] threw exception [Required MultipartFile[] parameter 'photos' is not present] with root cause

org.springframework.web.bind.MissingServletRequestParameterException: Required MultipartFile[] parameter 'photos' is not present

用MultipartFile接收文件需增加配置:

<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">

<!--可设置上传文件大小限制,1024*200即200k-->

 <property name="maxUploadSize" value="204800"/>

</bean>

0 0
原创粉丝点击