如何使用Spring RestTemplate执行设置http请求体?

时间:2015-07-06 16:05:06

标签: spring spring-mvc get spring-3 resttemplate

我想使用 RestTemplate 发出请求。我必须发送带有GET请求的请求有效负载。是的,是的,我知道。所以我尝试了 RestTemplate.exchange ,但似乎它没有为GET请求发送有效负载,无论如何。所以我进一步查看了文档和数字 RestTemplate.execute 可能就是我想要的......现在我在这里。

因此,文档说明执行

  

对给定的URI模板执行HTTP方法,使用 RequestCallback 准备请求,并使用 ResponseExtractor 读取响应。

http://docs.spring.io/spring-framework/docs/3.2.8.RELEASE/javadoc-api/org/springframework/web/client/RestTemplate.html

好。我们来看看 RequestCallback

  

ClientHttpRequest 上运行的代码的回调接口。允许操作请求标头,并写入请求正文。   由 RestTemplate 在内部使用,但对应用程序代码也很有用。

http://docs.spring.io/spring-framework/docs/3.2.8.RELEASE/javadoc-api/org/springframework/web/client/RequestCallback.html

但是 RequestCallback 只有一个方法: doWithRequest ,它通过 ClientHttpRequest 接口接受它的参数...没有设置/操作请求正文的方法。可悲的是。 :C

http://docs.spring.io/spring-framework/docs/3.2.8.RELEASE/javadoc-api/org/springframework/http/client/ClientHttpRequest.html

所以,我有两个问题:

  • 关于文档我在这里缺少什么?
  • 如何使用RestTemplate向有效负载/请求正文发出GET请求?

1 个答案:

答案 0 :(得分:1)

你可以这样做:

public class BodySettingRequestCallback implements RequestCallback {

    private String body;
    private ObjectMapper objectMapper;

    public BodySettingRequestCallback(String body, ObjectMapper objectMapper){
        this.body = body;
        this.objectMapper = objectMapper;
    }

    @Override
    public void doWithRequest(ClientHttpRequest request) throws IOException {
      byte[] json = getEventBytes();
      request.getBody().write(json);
    }

    byte[] getEventBytes() throws JsonProcessingException {
        return objectMapper.writeValueAsBytes(body);
    }
}

您将在execute方法中使用此RequestCallback。类似的东西:

restTemplate.execute(url, HttpMethod.POST, callback, responseExtractor);