Spring REST - RestTemplate可以使用multipart / mixed吗?

时间:2012-12-17 16:56:25

标签: spring spring-mvc resttemplate multipartform-data

我想编写一个REST服务,它使用zipFile和一些json数据进行响应,所有内容都在一个多部分/混合请求中。

服务器部分工作正常,我正在使用Firefox的REST客户端进行测试。我的服务器发送像这样的多部分

--k-dXaXvCFusLVXUsg-ryiHMmkdttadgcBqi4XH

Content-Disposition: form-data; name="form"
Content-type: application/json

{"projectName":"test","signal":"true"}

--k-dXaXvCFusLVXUsg-ryiHMmkdttadgcBqi4XH
Content-Disposition: form-data; name="file2"; filename="file2.txt"
Content-type: application/octet-stream
Content-Length: 10

hallo=Welt

我知道RestTemplate可以在MultiValueMap的帮助下发送多个部分。

现在我尝试使用multipart / mixed响应并返回MultiValueMap

@Component
public class RestCommand 
extends AbstractLoginRestCommand<Form, MultiValueMap<String, Object>>
{
    @Override
    protected MultiValueMap<String, Object> executeInternal ( Form form )
    {
        RestTemplate restTemplate = getRestTemplate();
        MyMultiValueMap map = restTemplate.postForObject(getUrl(), form, MyMultiValueMap.class);
        return new LinkedMultiValueMap<String, Object>(map);
    }
}

class MyMultiValueMap extends LinkedMultiValueMap<String, Object>
{}

存在MyMultiValueMap以防止类型擦除(泛型)。

这给出了

  

org.springframework.web.client.RestClientException:无法解压缩   响应:没有为响应类型找到合适的HttpMessageConverter   [class org.jlot.client.remote.MyMultiValueMap]和内容类型   [多部分/格式数据;边界= RJH-fkdsI9OIyPpYwdFY7lsUIewhRSX8kE19I;字符集= UTF-8]     在   org.springframework.web.client.HttpMessageConverterExtractor.extractData(HttpMessageConverterExtractor.java:107)     在   org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:492)

FormHttpMessageConverter的Javadoc说它可以写但不能读取multipart / form-data。

为什么会这样?

有没有办法用开箱即用的RestTemplate读取multipart / form-data,还是需要编写HttpMessageConverter?

2 个答案:

答案 0 :(得分:1)

我有同样的问题,我认为我实现了你想要的。 您只需要覆盖表单转换器的canRead方法。以你的例子,下面的东西应该可以工作。

FormHttpMessageConverter formConverter = new FormHttpMessageConverter() {
    @Override
    public boolean canRead(Class<?> clazz, MediaType mediaType) {
        if (clazz == MyMultiValueMap.class) {
            return true;
        }
        return super.canRead(clazz, mediaType);
    }
};

并将此转换器添加到您的其余模板。

答案 1 :(得分:0)

我目前使用此解决方案:

@ResponseBody
@PostMapping(value = JlotApiUrls.PUSH, produces = "application/json")
public List<PushResultDTO> push ( 
        @PathVariable String projectName,       
        @PathVariable String versionName, 
        @RequestPart("file") MultipartFile multipartFile, 
        @RequestPart("data") @Valid PushForm pushForm 
   ) throws IOException, BindException
{
 ...
}

https://github.com/kicktipp/jlot/blob/master/jlot-web/src/main/java/org/jlot/web/api/controller/PushController.java