I'm trying to use commons-fileupload module by including its dependency in pom.xml. Packaging has no problem, however, when starting the web-app, it causes the "NoClassDefFound" error:
java.lang.NoClassDefFoundError: org/apache/commons/fileupload/FileItemFactory
Here's my pom.xml config:
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.2.1</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-io</artifactId>
<version>1.3.2</version>
</dependency>
Also, I included following config in applicationContext.xml:
<bean id="multipartResolver"
class="org.springframework.web.multipart.commons.CommonsMultipartResolver"/>
I wonder what I am doing wrong here?