小老虎的开发记述【六】SpringMvc上传文件配置
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>
本文标题:小老虎的开发记述【六】SpringMvc上传文件配置
本文链接:https://www.haomeiwen.com/subject/ktlsittx.html
网友评论