如何在Spring restful服务中处理由文件和JSON对象组成的多部分请求?

2022-09-02 03:40:56

我有以下资源(使用Spring 4.05.RELEASE实现),它接受一个文件和一个JSON对象:

(P.S. activityTemplate 是一个可序列化的实体类)

...
@RequestMapping(value="/create", method=RequestMethod.POST)
public @ResponseBody ActivityTemplate createActivityTemplate(
        @RequestPart ActivityTemplate activityTemplate, @RequestPart MultipartFile jarFile)
{
   //process the file and JSON
}
...

这就是我正在测试的形式:

<form method="POST" enctype="multipart/form-data"
    action="http://localhost:8080/activityTemplates/create">
    JSON: <input type="text" name="activityTemplate" value='/* the JSON object*/'><br />

    File to upload: <input type="file" name="file">
    <input type="submit" value="Upload">
</form>

这是我得到的错误:

 There was an unexpected error (type=Unsupported Media Type, status=415).
 Content type 'application/octet-stream' not supported

那么,我应该如何使资源接受 JSON 对象作为多部分请求的一部分,还是应该以不同的方式发送表单?


答案 1

我花了两天时间为我工作!

客户端(角度):

$scope.saveForm = function () {
      var formData = new FormData();
      var file = $scope.myFile;
      var json = $scope.myJson;
      formData.append("file", file);
      formData.append("ad",JSON.stringify(json));//important: convert to string JSON!
      var req = {
        url: '/upload',
        method: 'POST',
        headers: {'Content-Type': undefined},
        data: formData,
        transformRequest: function (data, headersGetterFunction) {
          return data;
        }
      };

弹簧(靴子):

@RequestMapping(value = "/upload", method = RequestMethod.POST)
    public @ResponseBody
    Advertisement storeAd(@RequestPart("ad") String adString, @RequestPart("file") MultipartFile file) throws IOException {

        Advertisement jsonAd = new ObjectMapper().readValue(adString, Advertisement.class);
//do whatever you want with your file and jsonAd

答案 2

希望这应该对你有所帮助。您需要在请求中设置边界以通知 HTTP 请求。很简单;可以在下面的链接中找到多部分格式的简要介绍

HTML 4.01 多部分规范

下面的示例阐释了“多部分/表单数据”编码。如果 Json 对象是 “MyJsonObj” ,而需要发送的文件是 “myfile.txt”,则用户代理可能会发回以下数据:

Content-Type: multipart/form-data; boundary=MyBoundary

--MyBoundary
Content-Disposition: form-data; name="myJsonString"
Content-Type: application/json

MyJsonObj //Your Json Object goes here
--MyBoundary
Content-Disposition: form-data; name="files"; filename="myfile.txt"
Content-Type: text/plain

... contents of myfile.txt ...
--MyBoundary--

或者,如果您的文件是名为“image.gif”的图像类型,那么,

--MyBoundary
Content-Disposition: file; filename="image.gif"
Content-Type: image/gif
Content-Transfer-Encoding: binary

...contents of image.gif...
--MyBoundary--

Content-Type 标头中指定边界,以便服务器知道如何拆分发送的数据。

因此,您基本上需要选择一个边界值来:

  • 使用不会显示在发送到服务器的 HTTP 数据中的值,如 。'AaB03x'
  • 保持一致,并在整个请求中使用相同的值。