org.springframework.web.client.restclientexception: no httpmessageconverter for java.util.hashmap an

孙修贤
2023-12-01

前言

在使用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);

再测试一下,发现没有报错了

 类似资料:

相关阅读

相关文章

相关问答