我在Java Spring中通过http post收到一个multipart文件。我想将该请求与文件转发给其他服务器。我怎么能在Spring java中做到这一点?
答案 0 :(得分:0)
In your jsp file:
<form ... method="post" enctype="multipart/form-data">
and in your controller class:
@RequestMapping(value = "/save", method = RequestMethod.POST)
@ResponseBody
public Long save(@RequestParam("file") MultipartFile file,
@RequestParam String fileCode,...) throws IOException {
...
}