SpringMVC handles file upload configuration

  <!-- Configure springMVC to process information about uploaded files-->
    <bean id="multipartResolver"
          class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
        <property name="defaultEncoding" value="utf-8"/>
        <property name="maxUploadSize" value="10485760000"/>
        <property name="maxInMemorySize" value="40960"/>
    </bean>

 

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=326505908&siteId=291194637