事务处理-回滚(转账操作)

Posted 梦碎轻抚尘埃

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了事务处理-回滚(转账操作)相关的知识,希望对你有一定的参考价值。

JDBC事务处理-四大原则

原子性
一致性
隔离性
持久性

 

第一步:实现转账操作

假设在账户中,盖伦有余额5000元,赵信有余额2000元,

盖伦要向赵信转账1000元。

	public static void outMoney(Connection conn,String name,int account) throws SQLException{
		String sql="update t_account set balance=balance-? where name=?";
		PreparedStatement pst=conn.prepareStatement(sql);
		pst.setInt(1, account);
		pst.setString(2, name);
		int result=pst.executeUpdate();
		pst.close();
	}
	public static void inMoney(Connection conn,String name,int account) throws SQLException{
		String sql="update t_account set balance=balance+? where name=?";
		PreparedStatement pst=conn.prepareStatement(sql);
		pst.setInt(1, account);
		pst.setString(2, name);
		int result=pst.executeUpdate();
		pst.close();
	}

  

		System.out.println("盖伦正在给赵信转账1000元");
		//转账操作
		try {
			outMoney(conn,"盖伦",1000);
			inMoney(conn,"赵信",1000);
		} catch (SQLException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}finally{
			try {
				System.out.println("转账成功!");
				conn.close();
			} catch (SQLException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
		}

  运行:

正常转账成功。

假设  public static void inMoney(Connection conn,String name,int account)运行时出现意外。

人为构造意外

然后运行程序

 

 

查看数据库的数据

盖伦少了1000元,赵信余额没有变!

这样,赵信就坑了!!!

 

【改进】

所需要的函数

con.setAutoCommit(false); // 取消自动提交

con.rollback(); // 回滚

con.commit(); // 提交事务

 

             Connection conn=null;
		try {
			conn = dbUtil.getConnection();
			System.out.println("盖伦正在给赵信转账1000元");
			conn.setAutoCommit(false);//取消自动提交
			outMoney(conn,"盖伦",1000);
			inMoney(conn,"赵信",1000);
		} catch (ClassNotFoundException e) {
			e.printStackTrace();
		} catch (SQLException e) {
			try {
				conn.rollback();//回滚
			} catch (SQLException e1) {
				e1.printStackTrace();
			}
			e.printStackTrace();
		}finally{
			try {
				conn.commit();//提交
				conn.close();
			} catch (SQLException e) {
				e.printStackTrace();
			}
		}    

  

以上是关于事务处理-回滚(转账操作)的主要内容,如果未能解决你的问题,请参考以下文章

MySQL事务处理实现方法步骤

事务——银行转账

Mongdb事务和原子操作

JavaWeb5.6JDBC:JDBC控制事务转账案例

JDBC事务,银行转账,货物进出库等等。

MySQL事务回滚