【发布时间】:2015-07-19 21:13:53
【问题描述】:
我尝试在 Spring 4 MVC 中编写文件上传程序。但是不断抛出以下异常。
java.lang.NoClassDefFoundError: org/apache/commons/fileupload/FileItemFactory
我查看了与此问题相关的所有问题,并声称我没有犯任何错误。
我从 maven 下载了 commons-fileupload:1.3.1 库,并将以下行添加到我的 .iml 文件中
<orderEntry type="library" name="commons-fileupload:commons-fileupload:1.3.1" level="project" />
这个bean被添加到spring-mvc-servlet.xml
<bean id="multipartResolver"
class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<!-- setting maximum upload size -->
<property name="maxUploadSize" value="100000" />
</bean>
另外我注意到库中找不到的类被划掉了(见下图)
无法确定这是异常的主要原因还是这些类仍然可用。
【问题讨论】:
标签: spring maven spring-mvc file-upload