java.util.concurrent.CompletionStage – 如何处理异常?
作者:互联网
我正在尝试找到更好的方法来处理以下代码中的多个异常:
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 repo名称和所有者并返回一些基本信息(如全名,描述,克隆URL等). repositoryInfoService.getRepositoryInfo()返回对象或抛出GithubRepoNotFoundException或GithubApiException.这个例子看起来很丑陋,我对此并不满意.另一个选择是重新抛出ex.getCause()但它也很糟糕.
解决方法:
有些库可以为if语句和instanceof提供更流畅的API.
使用javaslang matcher和java的可选你的处理程序看起来像
.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,java-8,java-util-concurrent 来源: https://codeday.me/bug/20190711/1430719.html