当前位置:  开发笔记 > 编程语言 > 正文

如何从RestTemplate调用URL中提取HTTP状态代码?

如何解决《如何从RestTemplate调用URL中提取HTTP状态代码?》经验,为你挑选了2个好方法。

RestTemplate用来对我们的服务进行HTTP调用,返回一个简单的JSON响应.我根本不需要解析那个JSON.我只需要返回我从该服务中获得的任何内容.

所以我将其映射到String.class并将实际值JSON response作为字符串返回.

RestTemplate restTemplate = new RestTemplate();

String response = restTemplate.getForObject(url, String.class);

return response;

现在的问题是 -

我想HTTP Status codes在点击URL后提取.如何从上面的代码中提取HTTP状态代码?我是否需要以目前的方式对其进行任何更改?

更新: -

这是我尝试过的,我能够得到回复和状态代码.但是,我是否总是需要设置HttpHeadersEntity对象,如下所示我在做什么?

    RestTemplate restTemplate = new RestTemplate();     

    //and do I need this JSON media type for my use case?
    HttpHeaders headers = new HttpHeaders();
    headers.setContentType(MediaType.APPLICATION_JSON);

    //set my entity
    HttpEntity entity = new HttpEntity(headers);

    ResponseEntity out = restTemplate.exchange(url, HttpMethod.GET, entity, String.class);

    System.out.println(out.getBody());
    System.out.println(out.getStatusCode());


几个问题 - 我需要有,MediaType.APPLICATION_JSON因为我只是调用url返回响应,它可以返回JSON或XML或简单的字符串.



1> Sotirios Del..:

使用RestTemplate#exchange(..)返回的方法ResponseEntity.这使您可以访问状态行和标题(显然是身体).


@ user2809564阅读javadoc.它准确地解释了您需要做什么.

2> jonashackt..:

如果你不想把RestTemplate.get/postForObject...像我这样的方法留下好的抽象并且不喜欢使用在使用时需要的样板文件RestTemplate.exchange...(Request-和ResponseEntity,HttpHeaders等),那么还有另一个选项可以访问HttpStatus码.

只是围绕通常RestTemplate.get/postForObject...用一个try/catch为org.springframework.web.client.HttpClientErrorExceptionorg.springframework.web.client.HttpServerErrorException,就像这个例子:

try {
    return restTemplate.postForObject("http://your.url.here", "YourRequestObjectForPostBodyHere", YourResponse.class);

} catch (HttpClientErrorException | HttpServerErrorException httpClientOrServerExc) {

    if(HttpStatus.NOT_FOUND.equals(httpClientOrServerExc.getStatusCode())) {
      // your handling of "NOT FOUND" here  
      // e.g. throw new RuntimeException("Your Error Message here", httpClientOrServerExc);
    }
    else {
      // your handling of other errors here
}

org.springframework.web.client.HttpServerErrorException这里添加的是a的错误50x.

现在you're能简单应对所有你想要的StatusCodes -除了一个合适的,符合你的HTTP方法-像GET200,这不会致使被作为例外处理,因为它是一个匹配.但是,如果您正在实施/使用RESTful服务,这应该是直截了当的:)

推荐阅读
LEEstarmmmmm
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有