5

我有一个 RestService 接口,其中包含我在整个应用程序中使用的许多休息调用。

我正在设置处理超时connectionread-timeouts

ClientHttpRequestFactory httpFactory = myRestService.getRestTemplate().getRequestFactory();
    if(httpFactory!=null)
    {
        if(httpFactory instanceof SimpleClientHttpRequestFactory)
        {
            ((SimpleClientHttpRequestFactory)httpFactory).setConnectTimeout(10*1000);
            ((SimpleClientHttpRequestFactory)httpFactory).setReadTimeout(30*1000);
        }
        else if(httpFactory instanceof HttpComponentsClientHttpRequestFactory)
        {
            ((HttpComponentsClientHttpRequestFactory)httpFactory).setConnectTimeout(10*1000);
            ((HttpComponentsClientHttpRequestFactory)httpFactory).setReadTimeout(30*1000);
        }
    }

但我坚持处理超时情况。我想过使用这种方法,但是当休息调用失败时它不会进入这个循环。

myRestService.getRestTemplate().setErrorHandler(new ResponseErrorHandler() 
    {
        @Override
        public boolean hasError(ClientHttpResponse paramClientHttpResponse) throws IOException 
        {
            Log.e(TAG, paramClientHttpResponse==null?"Null response" : ("Has Error : " + paramClientHttpResponse.getStatusText()+" , status code : "+paramClientHttpResponse.getStatusCode()));

            return false;
        }
        @Override
        public void handleError(ClientHttpResponse paramClientHttpResponse) throws IOException 
        {
            Log.e(TAG, paramClientHttpResponse==null?"Null response":("Handle Error : " + paramClientHttpResponse.getStatusText()+" , status code : "+paramClientHttpResponse.getStatusCode()));
        }
    });

任何人都可以帮我解决这个问题..!?

4

1 回答 1

9

ErrorHandlers 无法覆盖超时、坏网关、找不到主机和其他套接字异常。ErrorHandlers 的目标是查找现有响应中的错误,如 ResponseErrorHandler 的方法签名中所述。

所有套接字异常都会抛出 RestClientException 并且必须为每个 RestTemplate 操作(例如 try...catch 块中的 getForObject() )捕获。

try {
    repr = myRestService.getRestTemplate().getForObject(url, responseType, vars);
} catch (RestClientException e) {
    //Further exception processing, forming negative response should be here
}

查看参考

希望,这有帮助。

于 2013-05-22T08:57:07.710 回答