What is the restTemplate.exchange() method for?

前端 未结 4 1207
日久生厌
日久生厌 2021-02-02 07:37

Actually what does the restTemplate.exchange() method do?

@RequestMapping(value = \"/getphoto\", method = R         


        
4条回答
  •  独厮守ぢ
    2021-02-02 08:17

    The more generic exchange API requires a HttpMethod parameter and a request object for completeness. Compare:

    ResponseEntity response = 
    restTemplate.exchange(url, HttpMethod.GET, request, Foo.class);
    
    ResponseEntity response = 
    restTemplate.getForEntity(url, Foo.class);
    

提交回复
热议问题