restTemplate用body删除

时间:2016-04-27 19:53:36

标签: java spring rest resttemplate spring-rest

我正在尝试使用请求正文执行DELETE,但我一直收到400(错误请求)错误。当我在招摇/邮递员中这样做时,它成功删除了记录。但是从Java代码中我无法做到这一点

外部API的设计方式需要正文和URL。它无法改变。请告诉我如何删除带有请求正文的条目

public Person delete(Person person, String url, Map<String, String> uriVariables) throws JsonProcessingException {
        RestTemplate restTemplate = new RestTemplate();
        CustomObjectMapper mapper = new CustomObjectMapper();
        HttpEntity<Person> requestEntity = new HttpEntity<Person>(person);
        try {
            ResponseEntity<Person> responseEntity = restTemplate.exchange(url, HttpMethod.DELETE, requestEntity, Person.class, uriVariables);
            return responseEntity.getBody();
        } catch (RestClientException e) {
            System.out.println(mapper.writeValueAsString(person));
            throw e;
        }
    }

当它转到异常时,我将以JSON格式获取JSON请求,并且在Swagger / postman中也能正常工作

我做了一些谷歌搜索,发现当有请求体时,restTemplate有问题删除。这篇文章没有帮助https://jira.spring.io/browse/SPR-12361有什么方法可以让它发挥作用

2 个答案:

答案 0 :(得分:0)

Spring 4.0.x或更早版本存在问题。
在以后的版本中它已被修复。

这可能是一个迟到的答案,但在我的一个项目中,我通过自定义ClientHttpRequestFactoryRestTemplate

解决了这个问题

如果RestTemplate没有提供工厂,则会使用默认实施SimpleClientHttpRequestFactory

SimpleClientHttpRequestFactory班级中,请求正文不允许使用DELETE方法。

if ("PUT".equals(httpMethod) || "POST".equals(httpMethod) ||     
         "PATCH".equals(httpMethod)) {
    connection.setDoOutput(true);
}
else {
    connection.setDoOutput(false);
}

只需编写自己的实现

import java.io.IOException;
import java.net.HttpURLConnection;

import org.springframework.http.client.SimpleClientHttpRequestFactory;

public class CustomClientHttpRequestFactory extends SimpleClientHttpRequestFactory {

    @Override
    protected void prepareConnection(HttpURLConnection connection, 
            String httpMethod) throws IOException {

        super.prepareConnection(connection, httpMethod);
        if("DELETE".equals(httpMethod)) {
            connection.setDoOutput(true);
        }
    }
}

之后,将您的RestTemplate对象创建为

RestTemplate template = new RestTemplate(
                            new CustomClientHttpRequestFactory());

修复( 4.1.x或更高版本SimpleClientHttpRequestFactory

的更高版本
if ("POST".equals(httpMethod) || "PUT".equals(httpMethod) ||
            "PATCH".equals(httpMethod) || "DELETE".equals(httpMethod)) {
    connection.setDoOutput(true);
}
else {
    connection.setDoOutput(false);
}

答案 1 :(得分:0)

解决此问题的另一种方法是使用restTemplate.exchange,下面是一个示例:

    
try {
      String jsonPayload  = GSON.toJson(request);
      HttpEntity<String> entity = new HttpEntity<String>(jsonPayload.toString(),headers());
      ResponseEntity resp = restTemplate.exchange(url, HttpMethod.DELETE, entity, String.class);
} catch (HttpClientErrorException e) {
      /* Handle error */
}

此解决方案的优点是您可以将其与所有HttpMethod类型一起使用。