就像你说Connection Reset
的,可能是由许多可能的原因引起的。一种这样的可能性可能是服务器在处理请求时超时,这就是客户端接收连接重置的原因。此处已回答问题的评论部分详细讨论了连接重置的可能原因。我能想到的一种可能的解决方案是配置HttpClient
为在失败的情况下重试请求。您可以设置HttpMethodRetryHandler
下面的内容来执行此操作(参考)。您可能需要根据收到的异常修改代码。
HttpMethodRetryHandler retryHandler = new HttpMethodRetryHandler()
{
public boolean retryMethod(
final HttpMethod method,
final IOException exception,
int executionCount)
{
if (executionCount >= 5)
{
// Do not retry if over max retry count
return false;
}
if (exception instanceof NoHttpResponseException)
{
// Retry if the server dropped connection on us
return true;
}
if (!method.isRequestSent())
{
// Retry if the request has not been sent fully or
// if it's OK to retry methods that have been sent
return true;
}
// otherwise do not retry
return false;
}
};
ApacheHttpClient client = ApacheHttpClient.create();
HttpClient hc = client.getClientHandler().getHttpClient();
hc.getParams().setParameter(HttpMethodParams.RETRY_HANDLER, retryHandler);
client.resource("/stores/"+storeId).type(MediaType.APPLICATION_JSON_TYPE).put(ClientResponse.class,indexableStore);