springboot發起http請求


 

springboot的spring-web項目下有一個

RestTemplate

使用它能夠幫助我們發送一些rest請求。

 

api相對簡單。下面的代碼基本概括了能夠干什么了。

 

    @RequestMapping(value = "/query", method = {RequestMethod.GET, RequestMethod.POST, RequestMethod.DELETE})
    public String query(HttpServletRequest request, HttpEntity<String> requestEntity) {

        HttpMethod requestMethod = HttpMethod.resolve(request.getMethod());

        if (HttpMethod.GET == requestMethod) {
            log.info("request method is {}, query path is {}", request.getMethod(), request.getRequestURL() + "?" + request.getQueryString());
        } else if (HttpMethod.POST == requestMethod) {
            log.info("request method is {}, query path is {}, request body is {}", request.getMethod(), request.getRequestURL(), requestEntity.getBody());
        }

        RestTemplate restTemplate = new RestTemplate();

        HttpHeaders headers = new HttpHeaders();
        headers.setContentType(MediaType.APPLICATION_JSON_UTF8);
        requestEntity = new HttpEntity<>(requestEntity.getBody(), headers);

        ResponseEntity<String> response = null;
        try {
            response = restTemplate.exchange(
                    serverUrl + "/path" + (HttpMethod.GET == requestMethod ? ("?" + request.getQueryString()) : ""),
                    requestMethod,
                    requestEntity,
                    String.class);
        } catch (RestClientException e) {
            log.error(e.toString());
            throw e;
        }

        return response.getBody();

    }

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM