我有以下情况,我试图看看是否有解决方案:
然而,一条快乐的道路应该是直截了当的,当涉及到服务发出的错误时,应该遵守以下规则:
>
如果其中只有一个失败,则通过另一个服务(异步)记录错误,并且API只返回成功服务的结果--这可以通过相应的@Async
线程来完成。
@Service
public class Serv1 interface ServInf {
@Async("customPool")
public CompletableFuture<List<Obj>> getSomething(int id) {
// The service ensures that the list is never null, but it can be empty
return CompletableFuture.completedFuture(/* calling an external RESTful API */);
}
}
@Service
public class Serv2 interface ServInf {
@Async("customPool")
public CompletableFuture<List<Obj>> getSomething(int id) {
// The service ensures that the list is never null, but it can be empty
return CompletableFuture.completedFuture(/* calling another external RESTful API */);
}
}
@RestController
public class MyController {
/** Typical service @Autowired's */
@GetMapping(/* ... */)
public WrapperObj getById(String id) {
CompletableFuture<List<String>> service1Result =
service1.getSomething(id)
.thenApply(result -> {
if (result == null) { return null; }
return result.stream().map(Obj::getName).collect(Collectors.toList());
})
.handle((result, exception) -> {
if (exception != null) {
// Call another asynchronous logging service which should be easy
return null;
} else {
return result;
}
});
CompletableFuture<List<String>> service2Result =
service2.getSomething(id)
.thenApply(result -> {
if (result == null) { return null; }
return result.stream().map(Obj::getName).collect(Collectors.toList());
})
.handle((result, exception) -> {
if (exception != null) {
// Call another asynchronous logging service which should be easy
return null;
} else {
return result;
}
});
// Blocking till we get the results from both services
List<String> result1 = service1Result.get();
List<String> result2 = service2Result.get();
/** Where to get the exceptions thrown by the services if both fail
if (result1 == null && result2 == null) {
/** Signal that the API needs to fail as a whole */
throw new CustomException( /** where to get the messages? */);
}
/** merge and return the result */
}
}
我的问题是,因为这些服务返回某个对象的列表,即使我使用CompletableFuture。handle()
并检查是否存在异常,我无法返回异常本身以捕获并让Spring Advice类处理它(链接以返回列表)。
我想到的一件事是使用AtomicReference
,以便捕获异常,并在handle()中设置它们,并在未来完成后使用它们,例如。
AtomicReference<Throwable> ce1 = new AtomicReference<>();
AtomicReference<Throwable> ce2 = new AtomicReference<>();
.handle((result, exception) -> {
if (exception != null) {
ce1.set(exception);
return null; // This signals that there was a failure
} else {
return result;
}
});
List<String> result1 = service1Result.get();
List<String> result2 = service2Result.get();
/** Where to get the exceptions thrown by the services if both fail
if (result1 == null && result2 == null) {
/** Signal that the API needs to fail as a whole */
throw new CustomException(/** do logic to capture ce1.get().getMessage() + ce2.get().getMessage() */);
}
首先,在这种多线程异步调用中,这听起来像是一个可行的解决方案吗?
其次,这看起来很混乱,所以我想知道是否有一种更优雅的方法可以在Spring异步池之外捕获这些异常,并在主线程中处理它,例如,组合异常信息并将其抛出到Spring Advice异常处理程序。
可完成的期货交易处理起来相当麻烦,但在国际海事组织(IMO)看来,这将是一种更具功能性和反应性的方法。
我们需要从https://stackoverflow.com/a/30026710/1225328:
static<T> CompletableFuture<List<T>> sequence(List<CompletableFuture<T>> com) {
return CompletableFuture.allOf(com.toArray(new CompletableFuture<?>[0]))
.thenApply(v -> com.stream()
.map(CompletableFuture::join)
.collect(Collectors.toList())
);
}
然后,我使用可选
来表示操作的状态,但是try
monad会更适合(所以如果您的代码库中有这样的实用程序,请使用一个-Java还没有在本地带来一个):
CompletableFuture<Optional<List<Object>>> future1 = service1.getSomething().thenApply(Optional::of).exceptionally(e -> {
// log e
return Optional.empty();
});
CompletableFuture<Optional<List<Object>>> future2 = service2.getSomething().thenApply(Optional::of).exceptionally(e -> {
// log e
return Optional.empty();
});
现在等待两个未来,并在获得结果后进行处理:
CompletableFuture<List<Object>> mergedResults = sequence(Arrays.asList(future1, future2)).thenApply(results -> {
Optional<List<Object>> result1 = results.get(0);
Optional<List<Object>> result2 = results.get(1);
if (result1.isEmpty() && result2.isEmpty()) {
throw new CustomException(...);
}
// https://stackoverflow.com/a/18687790/1225328:
return Stream.of(
result1.map(Stream::of).orElseGet(Stream::empty),
result2.map(Stream::of).orElseGet(Stream::empty)
).collect(Collectors.toList());
});
然后理想情况下,您可以直接返回mergedResults
,让框架为您处理,这样您就不会阻塞任何线程,或者您可以。get()
(这将阻止线程),如果抛出了CustomException
(或任何其他异常)(可在e.getCause()中访问),它将抛出
ExecutionException
)。
如果您已经在使用ProjectReactor(或同等产品),这看起来会更简单,但想法大致相同。
用例: 在CompletableFuture链期间发生异常 没有例外,当完成或句柄方法附加到CompletableFuture链时 结果是:从未捕捉到异常,并且没有对其进行跟踪/记录。在异步系统的情况下,这是1)不可取的,2)难以发现的隐藏问题(如NPE、运行时Exc等)的指标。 问题:实现CompletableFuture是否可行。UncaughtExceptionHandler机制通过类比/以
假设我有这个示例代码,在中遇到了一个异常。我的问题是,这个异常是否会阻止作为在与此代码的调用者方法相同的线程中运行。 我已经浏览了这个主题,它解释了如何处理从异步块抛出的异常(即通过阻塞和使用)。我想知道如果”,块中的代码是否会被执行。 更新: 我运行了一些代码来测试: 它不会打印任何内容,这意味着异常不会从异步块“传播到/到达”调用方方法的线程。我现在了解这里的预期行为,但我有以下问题: 为什么
问题内容: 我在web.xml中配置了一个错误servlet: 对? 在我的(通常)servlet中: 因此,在这种情况下,“ e”将是根本原因。 在我的ExceptionHandler类中,我有: 这就是问题。throwable.getCause()为null。 问题答案: 如果由servletcontainer捕捉到的异常是和声明捕捉异常 其他 比,那么它的原因实际上是打开并作为存储。因此,您
我试图抓住无效的json,而解析它与jiffy在牛仔web套接字处理程序。如果json是有效的/无效的,我想转发一个适当的消息到,它将回复客户端。这是我的代码。 这会导致运行时异常。 12:07:48.406[错误]牧场侦听器http已连接到进程 那我该怎么做呢?
我有这个密码- 编译器将如何实现这一点。在生成的汇编代码中,对异常的检查实际放在哪里? 更新 我知道上面的代码是如何翻译成字节码的。字节码仅将try-catch转换为相应的try-handler块。我感兴趣的是JVM将如何将其转换为汇编/与或处理。
有没有一种方法可以在Spring Boot异常处理程序中一次捕获从web请求抛出的所有异常?我知道我可以在用注释的方法中捕获异常类型数组,但它不是我所说的类型。我需要一个异常对象列表之类的东西。我已经试过了 但Spring无法找到合适的解析器: 它只捕捉一个可抛物体,工作很好: 但是,如果在同一请求中有不同的参数冲突,如和,该怎么办? 如果不可能处理异常列表,如何满足RFC-7807(参见http