5

我通过以下方式使用 Jersey 客户端 API:-

User user = webRsrc.accept(MediaType.APPLICATION_XML).post(User.class, usr);

所以我期待用户类对象的响应,它是一个 JAXB 注释类。但是,有时我也可能会收到一个错误 xml,为此我创建了一个 JAXB 类 ErrorResponse。

现在的问题是,如果我的请求返回一个 ErrorResponse 对象而不是 User 我该如何处理呢?

我试过这样 -

ClientResponse response=null;
try {

        response = webRsrc.accept(MediaType.APPLICATION_XML).post(ClientResponse.class,usr);
        User usr = response.getEntity(User.class);    
    }catch(Exception exp)
    {
       ErrorResponse err = response.getEntity(ErrorResponse.class);    
    }

但是当我尝试在 catch 块中使用 getEntity() 时,它会引发以下异常

[org.xml.sax.SAXParseException: Premature end of file.]
at com.sun.jersey.core.provider.jaxb.AbstractRootElementProvider.readFrom(AbstractRootElementProvider.java:107)
at com.sun.jersey.api.client.ClientResponse.getEntity(ClientResponse.java:532)
at com.sun.jersey.api.client.ClientResponse.getEntity(ClientResponse.java:491) .....

似乎在调用一次 getEntity() 之后,输入流已经耗尽。

4

3 回答 3

10

我认为您在整个“REST 思维方式”中遗漏了一点。
简短回答:是的,您只能调用一次 getEntity 。您需要检查返回的 HTTP 状态以了解您应该获取什么实体。

在服务器端:

  1. 在设计 REST API 时,应始终使用有关HTTP RFC的适当状态代码
  2. 就此而言,请考虑使用ExceptionMapper 接口(这是一个带有“NotFoundException”的示例

因此,现在您的服务器返回带有用户对象的“HTTP 状态 OK - 200”或带有错误对象的错误状态。

在客户端:

您需要检查返回状态并根据 API 规范调整您的行为。这是一个快速而肮脏的代码示例:

ClientResponse response=null;

response = webRsrc.accept(MediaType.APPLICATION_XML).post(ClientResponse.class,usr);

int status = response.getStatus();

if (Response.Status.OK.getStatusCode() == status) {

  // normal case, you receive your User object
  User usr = response.getEntity(User.class);

} else {

  ErrorResponse err = response.getEntity(ErrorResponse.class);
}

注意:根据返回的状态代码,此错误可能会非常不同(因此需要非常不同的行为):

  • 客户端错误 40X:您的客户端请求错误
  • 服务器错误 500:服务器端发生意外错误
于 2010-03-04T18:49:49.157 回答
2

这种代码可用于管理响应中的错误消息或业务消息:

protected <T> T call(String uri, Class<T> c) throws  BusinessException {


    WebResource res = new Client().create().resource(url);
    ClientResponse cresp = res.get(ClientResponse.class);
    InputStream respIS = cresp.getEntityInputStream();


    try {
        // Managing business or error response
        JAXBContext jCtx = JAXBContext.newInstance(c, BeanError.class);
        Object entity = jCtx.createUnmarshaller().unmarshal(respIS);

        // If the response is an error, throw an exception
        if(entity instanceof  BeanError) {
            BeanError error = (BeanError) entity;
            throw new  BusinessException(error);

        // If this not an error, this is the business response
        } else {
            return (T) entity;
        }

    } catch (JAXBException e) {

        throw(new BusinessException(e));
    }



}
于 2010-12-08T10:27:02.123 回答
0

如果您无法更改服务器代码,则可以使用ReaderInterceptor. 这确实有一些限制,但您至少能够获得错误响应对象的内容。


我使用的是 JSON,但同样的原则适用:

public class MyException extends RuntimeException {

    private final ErrorResponse content;

    public MyException(ErrorResponse content) {
        this.content = content;
    }

    public ErrorResponse getContent() {
        return content;
    }
}

public class ErrorResultInterceptor implements ReaderInterceptor {

    private static final ObjectReader JSON = new ObjectMapper().readerFor(ErrorResponse.class);

    @Override
    public Object aroundReadFrom(ReaderInterceptorContext context) throws IOException, WebApplicationException {
    byte[] buffer = context.getInputStream().readAllBytes();
    context.setInputStream(new ByteArrayInputStream(buffer));
        try {
            return context.proceed();
        } catch (UnrecognizedPropertyException ex) {
            try {
                throw new MyException(JSON.readValue(buffer));
            } catch (IOException errorProcessingEx) {
                // Log errorProcessingEx using your preferred framework
                throw ex;
            }
        }
    }
}

然后将其用作调用的一部分:

client.register(ErrorResultInterceptor.class);
// Oher client setup
try {
    // Make the client call
    // Handle OK case
} catch (ResponseProcessingException ex) {
    if (ex.getCause() instanceof MyException) {
        ErrorResponse respone = ((MyException)ex.getCause()).getContent();
        // Handle error response
    } else {
        throw ex;
    }
}

限制是:

  • 必须缓冲响应,这可能是内存开销
  • 获取错误结果的客户端调用非常笨拙
于 2020-02-07T13:40:19.903 回答