gpt4 book ai didi

java - Guava CacheLoader 抛出并捕获自定义异常

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:04:14 24 4
gpt4 key购买 nike

我正在尝试使用 Google Guava 缓存按服务相关对象进行缓存。在缓存未命中时,我使用我的 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) 实际上会抛出 InternalServerExceptionResourceNotFoundException。当我尝试使用此缓存实例获取对象时,我可以将异常捕获为 ExecutionException

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

}

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

我不确定检查 ExecutionException 的实例是否是我自己的异常之一是否可行,因为 load() 方法的签名实际上抛出 Exception而不是 ExecutionException。即使我可以使用 instanceof,它看起来也不是很干净。有什么好的方法可以解决这个问题吗?

最佳答案

来自 javadocs :

ExecutionException - if a checked exception was thrown while loadingthe value. (ExecutionException is thrown even if computation wasinterrupted by an InterruptedException.)

UncheckedExecutionException - if an unchecked exception was thrown while loading the value

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

} catch (ExecutionException e){
if(e.getCause() instanceof InternalServerException) {
//handle internal server error
} else if(e.getCause() instanceof ResourceNotFoundException) {
//handle resource not found
}
}

关于java - Guava CacheLoader 抛出并捕获自定义异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42108847/

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