Mein Datenbank-Worker ist oberhalb von Hibernate implementiert. Wenn etwas schief geht, sollten seine Methoden die Transaktion zurücksetzen und eine SQLException
. Meine Frage ist also: Was ist der beste (d.h. sauberste) Weg, um Hibernate-Ausnahmen zu behandeln? Derzeit sehen alle meine Methoden so hässlich aus wie diese:
public EntryUserHib addUser(final String username, final String pwdhash) throws SQLException{
try {
final Transaction ta = sess.beginTransaction();
try {
// Using Hibernate here
// "return" statement
} catch(final HibernateException ex) {
try {
ta.rollback();
} catch(final Exception ex1) {}
throw ex;
} finally {
if (!ta.wasRolledBack()) ta.commit();
}
} catch(final HibernateException ex) {
if (ex.getCause() != null) {
if (ex.getCause() instanceof SQLException) throw (SQLException)ex.getCause();
throw new SQLException(ex.getCause());
}
throw new SQLException(ex);
}
}