gpt4 book ai didi

java.util.concurrent.CompletionStage - 如何处理异常?

转载 作者:搜寻专家 更新时间:2023-11-01 03:48:08 25 4
gpt4 key购买 nike

我试图在以下代码中找到更好的方法来处理多个异常:

public CompletionStage<Result> getRepositoryInfo(String repositoryOwner, String repositoryName) {
return repositoryInfoService.getRepositoryInfo(repositoryOwner, repositoryName)
.handle((repositoryInfo, ex) -> {
if (repositoryInfo != null) {
return ok(Json.toJson(repositoryInfo));
} else {
if (ex.getCause() instanceof GithubRepoNotFoundException) {
return notFound(Json.toJson("repo not found"));
} else {
return internalServerError(Json.toJson("internal error"));
}
}
});
}

此程序获取 github 存储库名称和所有者,并返回一些基本信息(如全名、描述、克隆的 url 等)。 repositoryInfoService.getRepositoryInfo() 返回对象或抛出 GithubRepoNotFoundExceptionGithubApiException。这个 instanceof 看起来真的很难看,我对此并不满意。另一种选择是重新抛出 ex.getCause(),但它也很糟糕。

最佳答案

有些库为 if 语句和特别是 instanceof 提供了更流畅的 API。

使用 javaslang matcher和 java 的 Optional 你的处理程序看起来像

.handle((repositoryInfo, ex) -> ofNullable(repositoryInfo)
.map(info -> ok(toJson(info)))
.orElse(Match(ex.getCause()).of(
Case(of(GithubRepoNotFoundException.class), notFound(toJson("repo not found")),
Case(any(), internalServerError(toJson("internal error")))));

关于java.util.concurrent.CompletionStage - 如何处理异常?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37653270/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com