SpringMVC圖片上傳問題解決

當咱們上傳圖片時一直髮現:前端

MultipartFile file = null;web

if (request instanceof MultipartHttpServletRequest)  匹配不上,spring

 

解決方案: 在前端xml加入以下配置代碼便可3d

<!-- 圖片上傳bean -->
    <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">  
        <!-- set the max upload size100MB -->  
        <property name="maxUploadSize">  
            <value>104857600</value>  
        </property>  
        <property name="maxInMemorySize">  
            <value>4096</value>  
        </property>  
    </bean>  xml

 

示意圖:blog

相關文章
相關標籤/搜索