webservice超时异常捕获 重新调用
时间: 2023-10-02 10:09:26 浏览: 90
Java调用WebService接口的方法
在使用 WebService 进行远程调用时,由于网络不稳定等原因,可能会出现超时异常。为了防止这种情况,我们可以在代码中进行异常捕获并重新调用 WebService。
以下是一个示例代码:
```java
public class WebServiceUtil {
private static final int MAX_RETRY_TIMES = 3; // 最大重试次数
/**
* 调用 WebService
*
* @param url WebService 地址
* @param method WebService 方法名
* @param timeout 超时时间(单位:毫秒)
* @param params 参数列表
* @param <T> 返回类型
* @return 返回结果
* @throws Exception
*/
public static <T> T invokeWebService(String url, String method, int timeout, Object[] params, Class<T> resultType) throws Exception {
T result = null;
int retryTimes = 0;
while (retryTimes < MAX_RETRY_TIMES) {
try {
// 创建服务调用工厂
ServiceFactory serviceFactory = ServiceFactory.newInstance();
Call call = (Call) serviceFactory.createCall();
// 设置 WebService 地址
call.setTargetEndpointAddress(new URL(url));
// 设置 WebService 方法名
call.setOperationName(method);
// 设置 WebService 超时时间
call.setTimeout(timeout);
// 设置 WebService 参数
call.setUseSOAPAction(true);
call.addParameter(new QName(method), XMLType.XSD_STRING, ParameterMode.IN);
call.setReturnType(XMLType.XSD_STRING);
// 调用 WebService
String resultStr = (String) call.invoke(params);
// 解析 WebService 返回结果
JAXBContext jaxbContext = JAXBContext.newInstance(resultType);
Unmarshaller unmarshaller = jaxbContext.createUnmarshaller();
StringReader reader = new StringReader(resultStr);
result = (T) unmarshaller.unmarshal(reader);
break;
} catch (Exception e) {
retryTimes++;
if (retryTimes == MAX_RETRY_TIMES) {
throw e;
}
}
}
return result;
}
}
```
在调用 WebService 的过程中,我们可以设置最大重试次数。当出现异常时,我们可以进行重试,直到达到最大重试次数或者成功调用 WebService。如果重试次数达到最大限制仍然失败,则抛出异常。
阅读全文