java 异步调用不同的接口处理异常并获取结果
时间: 2024-03-15 19:47:05 浏览: 164
Java实现异步调用
在Java中,可以使用多种方式进行异步调用,比如使用Java8中的CompletableFuture或者使用Spring中的异步执行机制。以下是通过CompletableFuture实现异步调用两个不同接口处理异常并获取结果的示例代码:
```java
CompletableFuture<String> future1 = CompletableFuture.supplyAsync(() -> {
try {
String result = // 调用第一个接口
return result;
} catch(Exception ex) {
return "Error occurred while calling first API!";
}
});
CompletableFuture<String> future2 = CompletableFuture.supplyAsync(() -> {
try {
String result = // 调用第二个接口
return result;
} catch(Exception ex) {
return "Error occurred while calling second API!";
}
});
CompletableFuture<String> combinedFuture = future1.thenCombine(future2, (result1, result2) -> {
StringBuilder sb = new StringBuilder();
sb.append("Result1: ").append(result1).append("\n");
sb.append("Result2: ").append(result2);
return sb.toString();
});
String finalResult = combinedFuture.get();
```
在上面的代码中,我们首先通过CompletableFuture.supplyAsync()方法异步调用了第一个和第二个接口。在调用过程中,我们使用try-catch块处理了可能发生的异常,并返回了对应的错误信息。接着,我们通过CompletableFuture.thenCombine()方法将两个异步调用结果进行合并,并在合并结果的函数中将结果拼接成一个字符串返回。最后,我们通过调用CompletableFuture.get()方法获取最终的结果。需要注意的是,调用CompletableFuture.get()方法时会阻塞当前线程,直到异步调用完成并返回结果。
阅读全文