弹簧 RestTemplate GET 与参数
我必须进行包含自定义标头和查询参数的调用。我只用标题(没有正文)设置我的,我使用的方法如下: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
有人有什么想法吗?