小老虎的开发记述【六】SpringMvc上传文件配置
2017-02-04 本文已影响0人
ed75f7f7d38d
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>