檔案上傳相關報錯: The current request is not a multipart request或is a MultipartResolver configured?
1:The current request is not a multipart request
1:from中涉及到圖片上傳的就要用post提交方式。否則就會報這個錯誤。
2:第一中:在jsp頁面的<head></head>標籤裡面加上<meta http-equiv="Content-Type" content="multipart/form-data; charset=utf-8" />,用ajax提交的時候如果沒有在頁面設定<meta http-equiv="Content-Type" content="
原因請看http://www.tuicool.com/articles/FrY7Fv:
3:第二種:在from表單的屬性設定裡面加上enctype="multipart/form-data"
原因請看http://zkliqiang.iteye.com/blog/779285
2:Expected MultipartHttpServletRequest: is a MultipartResolver configured?
出現這個原因是需要在spring-mvc.xml 加上一句話
<!-- 設定上傳檔案最大值 1M=1*1024*1024(B)=1048576 bytes -->
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<property name="maxUploadSize" value="1048576" />
</bean>
multipartResolver 這個很重要
3:Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/xmlbeans/XmlObject
下載最新poi
加入包
poi-3.9\ 所有jar包
poi-3.9\ooxml-lib下的:三個jar包
如下圖所示:
4: java.lang.NoClassDefFoundError: org/apache/commons/collections4/ListValuedMap