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);

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

上一篇:HttpMessageConverter接口操作请求和响应;解决响应中的转义


下一篇:常用注解