portlet 多文件上传 (记录一下,备忘)
???由于项目的上的需要,需要在portal 页面上上传多个文件,而前面的实现都只是上传一个文件,使用的是spring提供的 MultipartFile类 。项目中使用的是spring2.5, 在http://static.springsource.org/spring/docs/1.2.x/reference/mvc.html上面也没找到上传多个文件的实现例子。
?
在项目中定义的bean为:
<bean id="portletMultipartResolver"
??? ?value="10000000"/>
?</bean>
?
使用的controller extends SimpleFormController?? 具体的控制器配置为 :
主要是将 request转换为:MultipartActionRequest 。
?