如何使用Java Spring将带有上传文件的post multipart / form-data表单重新发送到不同的服务器

时间:2015-10-30 21:12:10

标签: java spring post multipartform-data

我在Java Spring中通过http post收到一个multipart文件。我想将该请求与文件转发给其他服务器。我怎么能在Spring java中做到这一点?

1 个答案:

答案 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 {

   ...

}