SpringMvc配置
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<property name="maxUploadSize" value="10485760" />
</bean>
Maven依赖文件
<!--mvc的jar包--!>
<dependency>
<groupId> commons-io </groupId>
<artifactId> commons-io </artifactId>
<version> 2.4</version >
</dependency>
<dependency>
<groupId> commons-fileupload </groupId>
<artifactId> commons-fileupload </artifactId>
<version> 1.2.2</version >
</dependency>