在使用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);
再测试一下,发现没有报错了