学习Hibernate时,经常会遇到直接使用Hibernate问题,这里将介绍直接使用Hibernate问题的解决方法。
在直接使用Hibernate时,要在事务结束的时候,写上一句:tx.commit(),这个commit()的源码为:
- public void commit() throws HibernateException {
- if (!begun) {
- throw new TransactionException("Transaction not successfully started");
- }
- log.debug("commit");
- if (!transactionContext.isFlushModeNever() && callback) {
- transactionContext.managedFlush(); // if an exception occurs during
- // flush, user must call
- // rollback()
- }
- notifyLocalSynchsBeforeTransactionCompletion();
- if (callback) {
- jdbcContext.beforeTransactionCompletion(this);
- }
- try {
- commitAndResetAutoCommit();
- //重点代码,它的作用是提交事务,并把connection的autocommit属性恢复为true
- log.debug("committed JDBC Connection");
- committed = true;
- if (callback) {
- jdbcContext.afterTransactionCompletion(true, this);
- }
- notifyLocalSynchsAfterTransactionCompletion(Status.STATUS_COMMITTED);
- } catch (SQLException e) {
- log.error("JDBC commit failed", e);
- commitFailed = true;
- if (callback) {
- jdbcContext.afterTransactionCompletion(false, this);
- }
- notifyLocalSynchsAfterTransactionCompletion(Status.STATUS_UNKNOWN);
- throw new TransactionException("JDBC commit failed", e);
- } finally {
- closeIfRequired();
- }
- }
上面代码中,commitAndResetAutoCommit()方法的源码如下:
- private void commitAndResetAutoCommit() throws SQLException {
- try {
- jdbcContext.connection().commit();
- //这段不用说也能理解了
- } finally {
- toggleAutoCommit();
- //这段的作用是恢复connection的autocommit属性为true
- }
- }
上述代码的toggleAutoCommit()源代码如下:
- private void toggleAutoCommit() {
- try {
- if (toggleAutoCommit) {
- log.debug("re-enabling autocommit");
- jdbcContext.connection().setAutoCommit(true);
- //这行代码的意义很明白了吧
- }
- } catch (Exception sqle) {
- log.error("Could not toggle autocommit", sqle);
- }
- }
因此,如果你是直接使用Hibernate,并手动管理它的session,并手动开启事务关闭事务的话,完全可以保证你的事务(好像完全是废话)。
【编辑推荐】