我正在尝试编写一个客户端,在其中我将不使用body执行post方法。插入null的唯一解决方案是什么?例子:
client.exchange("/" + userId + "/logout", HttpMethod.POST, null, String.class);
rqdpfwrv1#
你也可以通过 HttpEntity.EMPTY (或 new HttpEntity<>(null) )结果应该是一样的。如果你有 HttpHeaders 对象-也可以将其传递到相应的构造函数: new HttpEntity<>(httpHeaders)
HttpEntity.EMPTY
new HttpEntity<>(null)
HttpHeaders
new HttpEntity<>(httpHeaders)
1条答案
按热度按时间rqdpfwrv1#
你也可以通过
HttpEntity.EMPTY
(或new HttpEntity<>(null)
)结果应该是一样的。如果你有
HttpHeaders
对象-也可以将其传递到相应的构造函数:new HttpEntity<>(httpHeaders)