23

我正在重构一些代码以使用guava Cache

初始代码:

public Post getPost(Integer key) throws SQLException, IOException {
    return PostsDB.findPostByID(key);
}

为了不破坏某些东西,我需要按原样保留任何抛出的异常,而不是包装它。

当前的解决方案看起来有些难看:

public Post getPost(final Integer key) throws SQLException, IOException {
    try {
        return cache.get(key, new Callable<Post>() {
            @Override
            public Post call() throws Exception {
                return PostsDB.findPostByID(key);
            }
        });
    } catch (ExecutionException e) {
        Throwable cause = e.getCause();
        if (cause instanceof SQLException) {
            throw (SQLException) cause;
        } else if (cause instanceof IOException) {
            throw (IOException) cause;
        } else if (cause instanceof RuntimeException) {
            throw (RuntimeException) cause;
        } else if (cause instanceof Error) {
            throw (Error) cause;
        } else {
            throw new IllegalStateException(e);
        }
    }
}

有没有办法让它变得更好?

4

2 回答 2

38

刚写完问题就开始考虑使用泛型支持的实用程序方法。然后想起了一些关于Throwables的事情。是的,它已经在那里了!)

可能还需要处理UncheckedExecutionException 甚至 ExecutionError

所以解决方案是:

public Post getPost(final Integer key) throws SQLException, IOException {
    try {
        return cache.get(key, new Callable<Post>() {
            @Override
            public Post call() throws Exception {
                return PostsDB.findPostByID(key);
            }
        });
    } catch (ExecutionException e) {
        Throwables.propagateIfPossible(
            e.getCause(), SQLException.class, IOException.class);
        throw new IllegalStateException(e);
    } catch (UncheckedExecutionException e) {
        Throwables.throwIfUnchecked(e.getCause());
        throw new IllegalStateException(e);
    }
}

非常好!

另请参阅ThrowablesExplainedLoadingCache.getUnchecked我们为什么不推荐使用 Throwables.propagate

于 2011-12-27T15:00:28.563 回答
0

只需@SneakyThrows从龙目岛使用。强制异常包装不再有问题。

<rant> 现在是 2021 年,Java 仍然有检查异常......人们什么时候才能明白,即使检查异常在纸面上看起来不错,但它们在实践中会产生太多问题?

长期解决方案:如果有机会,请转向适当的语言,例如 Kotlin。</rant>

于 2021-05-25T10:50:14.720 回答