gpt4 book ai didi

java - 有没有办法在 Spring RestTemplate DELETE 调用中传递 header 信息

转载 作者:IT老高 更新时间:2023-10-28 13:53:39 25 4
gpt4 key购买 nike

在 Spring RestTemplate 中,我们有以下删除方法。

@Override
public void delete(String url, Object... urlVariables) throws RestClientException {
execute(url, HttpMethod.DELETE, null, null, urlVariables);
}

@Override
public void delete(String url, Map<String, ?> urlVariables) throws RestClientException {
execute(url, HttpMethod.DELETE, null, null, urlVariables);
}

@Override
public void delete(URI url) throws RestClientException {
execute(url, HttpMethod.DELETE, null, null);
}

这些方法都没有任何地方可以传递 header 信息。有没有其他方法可以用于 DELETE 请求头信息?

最佳答案

您可以使用 exchange 方法(接受任何 HTTP 请求类型),而不是使用 delete 方法:

MultiValueMap<String, String> headers = new LinkedMultiValueMap<>();
headers.add("X-XSRF-HEADER", "BlahBlah");
headers.add("Authorization", "Basic " + blahblah);
etc...

HttpEntity<?> request = new HttpEntity<Object>(headers);
restTemplate.exchange(url, HttpMethod.DELETE, request, String.class);

关于java - 有没有办法在 Spring RestTemplate DELETE 调用中传递 header 信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30123021/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com