我遇到一个问题无法解决错误:无法实例化bean类[org.springframework.web.multipart.MultipartFile]:指定的类是一个接口。可能是什么问题?
这是方法:
@RequestMapping(value="text_ajax.do", method=RequestMethod.POST)
public ModelAndView testAjaxMethod(HttpServletRequest request, HttpServletResponse response, @RequestParam(value="fileArrayBB", required=true) MultipartFile file) throws IOException {
System.out.println("reaches the destination");
}
在servlet xml中我初始化了bean:
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<property name="maxUploadSize" value="5000000"/>
</bean>
感谢您的帮助。
顺便说一句,春季版: 2.5