标签:springmvc上传多个文件 spring mvc 文件上传 多个文件上传
Controller类中:
//@RequestParam:数组的注解,
@RequestMapping(value="add",method=RequestMethod.POST)}
映射文件中添加以下内容:
<!-- 文件上传 :-->
<!-- id的值必须为:multipartResolver -->
<bean id="multipartResolver"
class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<!-- one of the properties available; the maximum file size in bytes -->
<property name="maxUploadSize" value="500000"/>
</bean>
jsp页面添加相应的添加按钮即可
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:springmvc上传多个文件 spring mvc 文件上传 多个文件上传
原文地址:http://blog.csdn.net/han_ying_ying/article/details/48025603