Estoy refaccionando algunos códigos para usar guava Cache.caché de guayaba y conservar excepciones marcadas
código inicial:
public Post getPost(Integer key) throws SQLException, IOException {
return PostsDB.findPostByID(key);
}
Con el fin de no romper algo que necesito para preservar cualquier excepción lanzada como es, sin envolverlo.
solución actual parece algo feo:
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);
}
}
}
¿Hay alguna forma posible para que sea más agradable?
Vacila si la pregunta autocompuesta debe publicarse en absoluto. Pero esto dejó en claro: http://meta.stackexchange.com/questions/2706/posting-and-answering-questions-you-have-already-found-the-answer-to – Vadzim
Y gracias, guava chicos! – Vadzim
Así que márquelo como ** la ** respuesta válida;) – Xaerxess