spring mvc 中的MultipartFile 上传文件错误:File has already been moved - cannot be transferred again

Posted ys15

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring mvc 中的MultipartFile 上传文件错误:File has already been moved - cannot be transferred again相关的知识,希望对你有一定的参考价值。

没有正确配置临时文件的存储空间:

在spring mvc配置文件的修改:

<bean id="multipartResolver"
        class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
        <!-- 上传文件大小上限 -->
        <property name="maxUploadSize">
            <value>52882190</value>
        </property>
         <property name="maxInMemorySize" value="52882190" />
        <!-- 请求的编码格式,必须和jSP的pageEncoding属性一致,以便正确读取表单的内容,默认为ISO-8859-1 -->
        <property name="defaultEncoding">
            <value>UTF-8</value>
        </property>
    </bean>

 

以上是关于spring mvc 中的MultipartFile 上传文件错误:File has already been moved - cannot be transferred again的主要内容,如果未能解决你的问题,请参考以下文章

spring mvc中如何过滤form提交数据中的空格?

spring mvc中的mybatis怎么使用

两个 servlet 中的 Spring、MVC 和 REST

Spring MVC 中的验证

Spring mvc 中的 Servlet

了解 Spring MVC 中的“globalValidator”