标签: spring-mvc resttemplate
我的邮递员请求有一个空的正文以便发布请求。
然而,当我尝试使用resttemplate做同样的事情时,它总是会给我400个错误请求。
resttemplate.exchange(url, HttpMethod.POST, null, String.class)
我知道端点会给我回json。
当resttemplate最终执行时,它具有正确的url并且content-length设置为size = 1。不确定这是不是问题。