您的位置:首页 > 编程语言 > Java开发

SpringMVC文件上传问题

2015-09-16 18:44 453 查看
问题描述:Spring MVC 文件上传 发送请求失败

Current request is not of type [org.springframework.web.multipart.MultipartHttpServletRequest]

解决方案:

在servlet-context.xml 中添加配置

<!-- 处理Mutipart上传文件 -->
    <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
        <property name="maxUploadSize" value="40960000" />
        <property name="defaultEncoding" value="UTF-8" />
    </bean>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: