首页 > 编程语言> > org.springframework.web.client.restclientexception: no httpmessageconverter for java.util.hashmap an
org.springframework.web.client.restclientexception: no httpmessageconverter for java.util.hashmap an
作者:互联网
前言
在使用RestTemplate发送网络请求时,报了如下异常:org.springframework.web.client.restclientexception: no httpmessageconverter for java.util.hashmap and content type “application/x-www-form-urlencoded”
原因是使用了HashMap来作为requestBody传递,解析转换失败,换成MultiValueMap就可以了
解决
MultiValueMap<String, Object> requestBody = new LinkedMultiValueMap<>();
requestBody.add("grant_type", SystemConsts.GRANT_TYPE);
再测试一下,发现没有报错了
标签:web,httpmessageconverter,java,hashmap,requestBody,MultiValueMap 来源: https://blog.csdn.net/Yanzudada/article/details/121093136