7

我正在尝试使用 Google Guava Cache 按服务相关对象进行缓存。在缓存未命中时,我使用我的 REST 客户端来获取对象。我知道我可以通过以下方式做到这一点:

CacheLoader<Key, Graph> loader = new CacheLoader<Key, Graph>() {
     public Graph load(Key key) throws InternalServerException, ResourceNotFoundException {
       return client.get(key);
     }
   };
   LoadingCache<Key, Graph> cache = CacheBuilder.newBuilder().build(loader)

现在,client.getKey(Key k)实际上抛出InternalServerExceptionand ResourceNotFoundException。当我尝试使用此缓存实例获取对象时,我可以将异常捕获为ExecutionException.

try {
  cache.get(key);
} catch (ExecutionException e){

}

但是,我想专门捕获和处理我定义的 CacheLoader 抛出的异常(即InternalServerExceptionResourceNotFoundException)。

我不确定检查实例是否ExecutionException是我自己的异常之一是否会起作用,导致 load() 方法的签名实际上 throwsException而不是ExecutionException。即使我可以使用instanceof,它似乎也不是很干净。有什么好的方法来解决这个问题吗?

4

1 回答 1

10

来自javadocs

ExecutionException - 如果在加载值时引发检查异常。(即使计算被 InterruptedException 中断,也会抛出 ExecutionException。)

UncheckedExecutionException - 如果在加载值时抛出未经检查的异常

您需要通过调用 getCause() 检查捕获的 ExecutionException 的原因:

} catch (ExecutionException e){
    if(e.getCause() instanceof InternalServerException) {
        //handle internal server error
    } else if(e.getCause() instanceof ResourceNotFoundException) {
        //handle resource not found
    }
}
于 2017-02-08T10:23:26.070 回答