[Spring] REST Multipart file - Gukie/learning GitHub Wiki
REST Multipart-file
使用REST进行文件上传的时候,需要注意:
- 前端 需要将 content-type去除掉,让浏览器制动加上去; 因为浏览器除了会将content-type加上,还会加上boundary,以表示文件大小; 后端收到的信息如下:
multipart/form-data; boundary=----WebKitFormBoundaryYlg58lSDJrLBeRxx
- 后端的写法,只要定义一个POST的REST就ok了
@RequestMapping(value = "/import",method = RequestMethod.POST)
public String importFile( @RequestParam(name = "file") MultipartFile file) {
....
return "success";
}