wasCommitted()
session.saveOrUpdate(uf); //呼叫插入資料方法 if(tx.wasCommitted()){ //判斷事務是否已經被提交 System.out.println("事務已經被提交"); }else{ System.out.println("事務沒有被提交"); } tx.commit();//提交事務 if(tx.wasCommitted()){ System.out.println("事務已經被提交"); }else{ System.out.println("事務沒有被提交"); }