자바 RestTemplate post 매개 변수 가 만 나 는 구덩이 전달 요청

4295 단어 Java
    최근 Spring 의 RestTemplate 도구 류 요청 인 터 페 이 스 를 사용 할 때 매개 변수 가 전달 하 는 구 덩이 를 발 견 했 습 니 다. 즉, 우리 가 매개 변 수 를 Map 에 밀봉 할 때 Map 의 유형 을 선택 한 것 입 니 다.RestTemplate post 요청 을 사용 할 때 주로 세 가지 방식 으로 이 루어 집 니 다.
    1. post ForObject 방법 호출  2. post ForEntity 방법 사용 3. exchange 방법 호출
    postForObject 와 postForEntity 방법의 차 이 는 주로 postForEntity 방법 에서 header 의 속성 을 설정 할 수 있 으 며, header 의 속성 값 을 지정 해 야 할 때 postForEntity 방법 을 사용 합 니 다.exchange 방법 은 post ForEntity 와 유사 하지만 더욱 유연 합 니 다. exchange 는 get, put, delete 요청 을 호출 할 수 있 습 니 다.이 세 가지 방법 을 사용 하여 post 요청 전달 파 라 메 터 를 호출 합 니 다. Map 은 다음 과 같은 두 가지 유형 으로 정의 할 수 없습니다 (url 은 자리 표시 자 를 사용 하여 매개 변 수 를 전달 할 때 제외)

Map paramMap = new HashMap();

Map paramMap = new LinkedHashMap();

   经过测试,我发现这两种map里面的参数都不能被后台接收到,这个问题困扰我两天,终于,当我把Map类型换成LinkedMultiValueMap后,参数成功传递到后台


MultiValueMap paramMap = new LinkedMultiValueMap();

    经过测试,正确的传参方式如下


public static void main(String[] args) {
        RestTemplate template = new RestTemplate();
        String url = "http://192.168.2.40:8081/channel/channelHourData/getHourNewUserData";
        // 封装参数,千万不要替换为Map与HashMap,否则参数无法传递
        MultiValueMap paramMap = new LinkedMultiValueMap();
        paramMap.add("dt", "20180416");

        // 1、使用postForObject请求接口
        String result = template.postForObject(url, paramMap, String.class);
        System.out.println("result1==================" + result);

        // 2、使用postForEntity请求接口
        HttpHeaders headers = new HttpHeaders();
        HttpEntity> httpEntity = new HttpEntity>(paramMap,headers);
        ResponseEntity response2 = template.postForEntity(url, httpEntity, String.class);
        System.out.println("result2====================" + response2.getBody());

        // 3、使用exchange请求接口
        ResponseEntity response3 = template.exchange(url, HttpMethod.POST, httpEntity, String.class);
        System.out.println("result3====================" + response3.getBody());

}

GET方式传参说明

如果是get请求,又想要把参数封装到map里面进行传递的话,Map需要使用HashMap,且url需要使用占位符,如下:


public static void main(String[] args) {
        RestTemplate restTemplate2 = new RestTemplate();
        String url = "http://127.0.0.1:8081/interact/getData?dt={dt}&ht={ht}";
       
        // 封装参数,这里是HashMap
	Map paramMap = new HashMap();
	paramMap.put("dt", "20181116");
	paramMap.put("ht", "10");

	//1、使用getForObject请求接口
	String result1 = template.getForObject(url, String.class, paramMap);
	System.out.println("result1====================" + result1);

	//2、使用exchange请求接口
	HttpHeaders headers = new HttpHeaders();
	headers.set("id", "lidy");
	HttpEntity> httpEntity = new HttpEntity>(null,headers);
	ResponseEntity response2 = template.exchange(url, HttpMethod.GET, httpEntity, String.class,paramMap);
	System.out.println("result2====================" + response2.getBody());
}

ps:post请求也可以通过占位符的方式进行传参(类似get),但是看起来不优雅,推荐使用文中的方式

补充:使用RestTemplate调用delete、put请求请参考我的另一篇文章:https://blog.csdn.net/LDY1016/article/details/100121146

 

좋은 웹페이지 즐겨찾기