最佳答案
我必须进行REST
调用,其中包括自定义标头和查询参数。我用头文件(没有正文)设置了我的HttpEntity
,我使用RestTemplate.exchange()
方法如下所示:
HttpHeaders headers = new HttpHeaders();
headers.set("Accept", "application/json");
Map<String, String> params = new HashMap<String, String>();
params.put("msisdn", msisdn);
params.put("email", email);
params.put("clientVersion", clientVersion);
params.put("clientType", clientType);
params.put("issuerName", issuerName);
params.put("applicationName", applicationName);
HttpEntity entity = new HttpEntity(headers);
HttpEntity<String> response = restTemplate.exchange(url, HttpMethod.GET, entity, String.class, params);
这在客户端失败,因为dispatcher servlet
无法将请求解析到处理程序。调试之后,似乎没有发送请求参数。
当我使用请求体和没有查询参数与POST
进行交换时,它工作得很好。
有人有什么想法吗?