-1

我正在尝试使用 apache common-fileupload 和 spring 上传文件,并且我的表单也包含字段。但是当我尝试提交时总是得到空指针异常

所以现在使用 Multipartstream 来获得相同的解决方案。

@RequestMapping(value="/uploadfile.do", method = RequestMethod.POST)
public ModelAndView uploadFile(@ModelAttribute("frm") ReceiptForm form, BindingResult result, HttpServletRequest request){

    System.out.println("---"+form.getProductName());
    System.out.println("---"+form.getRfile());

    ModelAndView mav = new ModelAndView("receipt/upload");
    mav.addObject("command", form);
    return mav;

}
4

1 回答 1

1

以下示例显示了如何使用 CommonsMultipartResolver:

<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="100000"/>

通过将此添加到您的 spring 配置中,您的控制器应该会拾取文件上传

或尝试谷歌

于 2011-03-11T12:15:40.057 回答