spring mvc用rest注解时的文件上传和参数传递

html中的form中如果含有type=file的input,需要在form中添加属性enctype="multipart/form-data"

例如:

a: b: file:

但是controller会出现接受参数为null,这时在方法中需要添加@ModelAttribute注解:

@RequestMapping("/hao")  
public String processSubmit(@ModelAttribute("pojo") Pojo pojo,@RequestParam("file0") CommonsMultipartFile mFile)) {
	.... 
}

你可能感兴趣的:(spring mvc用rest注解时的文件上传和参数传递)