Spring框架5:事务和动态代理

事务

我们在service中加一个转账的功能

public void transfer(String sourceName, String targetName, Float money) {
            Account source = accountDao.findAccountByName(sourceName);
            Account target = accountDao.findAccountByName(targetName);
            source.setMoney(source.getMoney() - money);
            target.setMoney(target.getMoney() + money);
            accountDao.updateAccount(source);
            accountDao.updateAccount(target);
    }
貌似没什么问题吧,一套下来就是转账的流程。但是实际上这样写是会出问题的,就是不符合事务的一致性,可能会出现加钱失败了,减钱的事务还在继续。例如将上面的代码稍作改动:
    source.setMoney(source.getMoney() - money);
    int a=1/0;
    target.setMoney(target.getMoney() + money);

毫无疑问上面是会报错的,但是这时加钱的操作就不会进行了,但是减钱的操作已经做完了,这就导致了数据的异常。
导致这一现象的原因我们可以从accountDao的代码片段中看出来:

    public void updateAccount(Account account) {
        try {
            //name和money都是可变的,不变的是id,也就是主键,所以查找的时候要查id
            runner.update("update account set name=?,money=? where id=?",account.getName(),account.getMoney(),account.getId());
        } catch (Exception e) {
            throw new RuntimeException();
        }
    }

每一次操作都是调用一次runner.update,而注意我们在bean.xml对runner的配置

    <!-- queryRunner不能是单例对象,防止多线程出现问题-->
    <bean id="runner" class="org.apache.commons.dbutils.QueryRunner" scope="prototype">
        <!-- 注入数据源 -->
        <constructor-arg name="ds" ref="dataSoure"></constructor-arg>
    </bean>

runner是一个多例对象,每一个调用都是一个单独的runner,对数据库使用的是不同的连接,所以他们是不同的事务。解决方法就是让所有操作共用一个连接,而不是像我们在xml中设置的那样使用多例对象。这里的方法就是使用ThreadLocal对象把Connection和当前线程绑定从而使得一个线程只有一个能控制事务的对象。
关于ThreadLocal,可以看这篇文章:https://www.cnblogs.com/jiading/articles/12337399.html
来看我们的解决方案
首先,我们新建了一个连接的工具类,用于从数据源中获取连接,并且和线程相绑定
ConnectionUtils.java

package com.jiading.utils;

import javax.sql.DataSource;
import java.sql.Connection;

/*
连接的工具类,用于从数据源中获取连接并实现和线程的绑定
 */
public class ConnectionUtils {
    private ThreadLocal<Connection> tl = new ThreadLocal<Connection>();//新建一个ThreadLocal对象,它存放的是Connection类型的对象
/*
设置datasource的set函数,以便于之后spring进行注入
*/
    public void setDataSource(DataSource dataSource) {
        this.dataSource = dataSource;
    }

    /*
        获取当前线程上的连接
         */
    private DataSource dataSource;

//通过对connection的get方法
    public Connection getThreadConnection() {
        //1. 先从ThreadLocal上获取
        Connection conn = tl.get();
        try {
            //2. 判断当前线程上是否有连接,没有就创建一个
            if (conn == null) {
                //3.从数据源中获取一个连接,并和线程绑定
                conn = dataSource.getConnection();
                //4. 存入连接
                tl.set(conn);//现在ThreadLocal就和这个Connection对象绑定了
            }
            //5. 返回当前线程上的连接
            return conn;
        }catch(Exception e){
            throw new RuntimeException();
        }
    }
    /*
    把连接和线程解绑
     */
    public void removeConnection(){
        tl.remove();
    }
}

我们还需要另外一个工具类来帮忙实现和事务相关的操作。
TransactionManager.java:(注:transaction就是事务的意思)

package com.jiading.utils;

import java.sql.Connection;
import java.sql.SQLException;

/*
和事务管理相关的工具类,它包含了开启事务、提交事务、回滚事务和释放连接的方法
 */
public class TransactionManager {
/*
需要用到ConnectionUtils,这里设置一个set函数以便于spring注入
*/
    public void setConnectionUtils(ConnectionUtils connectionUtils) {
        this.connectionUtils = connectionUtils;
    }

    private ConnectionUtils connectionUtils;
    /*
    开启一个连接,并且设置它的自动commit关闭
     */
    public void beginTransaction(){
        try {
            connectionUtils.getThreadConnection().setAutoCommit(false);
        } catch (SQLException e) {
            e.printStackTrace();
        }
    }
    /*
    手动提交
    */
    public void commit(){
        try {
            connectionUtils.getThreadConnection().commit();
        } catch (SQLException e) {
            e.printStackTrace();
        }
    }
    /*
    回滚
    */
    public void rollback(){
        try {
            connectionUtils.getThreadConnection().rollback();
        } catch (SQLException e) {
            e.printStackTrace();
        }
    }
    public void release(){
        try {
            connectionUtils.getThreadConnection().close();//将连接放回连接池
            connectionUtils.removeConnection();//解绑
        } catch (SQLException e) {
            e.printStackTrace();
        }
    }
}

这里的工具类只负责事务相关的操作,它默认在一个线程中通过connectionUtils.getThreadConnection()获取的connection对象都是同一个,所以它才能如此放心地在每一个方法中都调用一遍connectionUtils.getThreadConnection()来获取对象。而对于ConnectionUtils,它和单例对象不一样,单例对象不能满足多线程使用的要求;但是也和多例对象不一样,多例对象不能区分是不同线程调用函数一个线程内多次调用。
对于Dao层,相应地方法的实现也变了:

package com.jiading.dao.impl;

import com.jiading.dao.IAccountDao;
import com.jiading.domain.Account;
import com.jiading.utils.ConnectionUtils;
import org.apache.commons.dbutils.QueryRunner;
import org.apache.commons.dbutils.handlers.BeanHandler;
import org.apache.commons.dbutils.handlers.BeanListHandler;

import java.sql.SQLException;
import java.util.List;

public class AccountDaoImpl implements IAccountDao {
    public void setRunner(QueryRunner runner) {

        this.runner = runner;
    }

    private QueryRunner runner;

    public void setConnectionUtils(ConnectionUtils connectionUtils) {
        this.connectionUtils = connectionUtils;
    }

    private ConnectionUtils connectionUtils;//需要使用这个连接工具类

    public List<Account> findAllAccount() {
        try {
            return runner.query(connectionUtils.getThreadConnection(),"select * from account", new BeanListHandler<Account>(Account.class));
        } catch (Exception e) {
            throw new RuntimeException();
        }
    }

    public Account findAccountById(Integer accountId) {
        try {
            return runner.query(connectionUtils.getThreadConnection(),"select * from account where id=?", new BeanHandler<Account>(Account.class),accountId);
        } catch (Exception e) {
            throw new RuntimeException();
        }
    }

    public void saveAccount(Account acc) {
        try {
            runner.update(connectionUtils.getThreadConnection(),"insert into account(name,money) values(?,?)",acc.getName(),acc.getMoney());
        } catch (Exception e) {
            throw new RuntimeException();
        }
    }

    public void updateAccount(Account account) {
        try {
            //name和money都是可变的,不变的是id,也就是主键,所以查找的时候要查id
            runner.update(connectionUtils.getThreadConnection(),"update account set name=?,money=? where id=?",account.getName(),account.getMoney(),account.getId());
        } catch (Exception e) {
            throw new RuntimeException();
        }
    }

    public void deleteAccount(Integer accountId) {
        try {
            runner.update(connectionUtils.getThreadConnection(),"delete from account where id=?",accountId);
        } catch (Exception e) {
            throw new RuntimeException();
        }
    }

    public Account findAccountByName(String AccountName) {
        /*
        有唯一结果就返回
        没有结果就返回Null
        如果结果集合超过一个就抛出异常
         */
        try {
            List<Account>accounts = runner.query(connectionUtils.getThreadConnection(),"select * from account where name=?", new BeanListHandler<Account>(Account.class), AccountName);
            if(accounts==null || accounts.size()==0){
                return null;
            }
            if(accounts.size()>1){
                throw new RuntimeException("结果集不唯一");
            }
            return accounts.get(0);
        } catch (Exception e) {
            throw new RuntimeException();
        }
    }
}

这里有个地方要注意,因为我们是采用工具类获取连接对象的并传入runner了,所以不能再向runner中注入connection了,所以runner.query()的参数多了一个,相应的bean.xml中也要修改:

    <!-- queryRunner不能是单例对象,防止多线程出现问题-->
    <bean id="runner" class="org.apache.commons.dbutils.QueryRunner" scope="prototype">
    </bean>

这里要注意,Dao中并没有用到我们写的那个事务的工具类,因为Dao是持久层,只负责sql语句的执行,而我们所说的事务是和我们的业务相关的,它应该是在service中:

package com.jiading.service.impl;

import com.jiading.dao.IAccountDao;
import com.jiading.domain.Account;
import com.jiading.service.IAccountService;
import com.jiading.utils.TransactionManager;

import java.util.List;

/*
事务的控制应该是在业务层的,而不是持久层
 */
public class AccountServiceImpl implements IAccountService {
    public void setAccountDao(IAccountDao accountDao) {
        this.accountDao = accountDao;
    }

    private IAccountDao accountDao;

    public void setTxManager(TransactionManager txManager) {
        this.txManager = txManager;
    }

    private TransactionManager txManager;

    public List<Account> findAllAccount() {
        try {
            //1.开启事务
            txManager.beginTransaction();
            //2.执行操作
            List<Account> allAccount = accountDao.findAllAccount();
            //3.提交事务
            txManager.commit();
            //4.返回结果
            return allAccount;
        } catch (Exception e) {
            //5. 回滚事务
            txManager.rollback();
            throw new RuntimeException(e);
        } finally {
            //6. 释放连接
            txManager.release();
        }

    }

    public Account findAccountById(Integer accountId) {
        try {
            //1.开启事务
            txManager.beginTransaction();
            //2.执行操作
            Account accountById = accountDao.findAccountById(accountId);
            //3.提交事务
            txManager.commit();
            //4.返回结果
            return accountById;
        } catch (Exception e) {
            //5. 回滚事务
            txManager.rollback();
            throw new RuntimeException(e);
        } finally {
            //6. 释放连接
            txManager.release();
        }
    }

    public void saveAccount(Account acc) {
        try {
            //1.开启事务
            txManager.beginTransaction();
            //2.执行操作
            accountDao.saveAccount(acc);
            //3.提交事务
            txManager.commit();
            //4.返回结果
        } catch (Exception e) {
            //5. 回滚事务
            txManager.rollback();
            throw new RuntimeException(e);
        } finally {
            //6. 释放连接
            txManager.release();
        }
    }

    public void updateAccount(Account account) {
        try {
            //1.开启事务
            txManager.beginTransaction();
            //2.执行操作
            accountDao.updateAccount(account);
            //3.提交事务
            txManager.commit();
            //4.返回结果
        } catch (Exception e) {
            //5. 回滚事务
            txManager.rollback();
            throw new RuntimeException(e);
        } finally {
            //6. 释放连接
            txManager.release();
        }
    }

    public void deleteAccount(Integer accountId) {
        try {
            //1.开启事务
            txManager.beginTransaction();
            //2.执行操作
            accountDao.deleteAccount(accountId);
            //3.提交事务
            txManager.commit();
            //4.返回结果
        } catch (Exception e) {
            //5. 回滚事务
            txManager.rollback();
            throw new RuntimeException(e);
        } finally {
            //6. 释放连接
            txManager.release();
        }
    }

    public void transfer(String sourceName, String targetName, Float money) {
        try {
            //1.开启事务
            txManager.beginTransaction();
            //2.执行操作
            Account source = accountDao.findAccountByName(sourceName);
            Account target = accountDao.findAccountByName(targetName);
            source.setMoney(source.getMoney() - money);
            target.setMoney(target.getMoney() + money);
        /*
        这样写是会出问题的,就是不符合事务的一致性,可能会出现加钱失败了,减钱的事务还在继续
        注意:一个连接对应的是一个事务。解决方法就是让所有操作共用一个连接,而不是像我们在xml中设置的那样使用多例对象
        解决方法:
            使用ThreadLocal对象把Connection和当前线程绑定从而使得一个线程只有一个能控制事务的对象
         */
            accountDao.updateAccount(source);
            accountDao.updateAccount(target);
            //3.提交事务
            txManager.commit();
            //4.返回结果;
        } catch (Exception e) {
            //5. 回滚事务
            txManager.rollback();
            throw new RuntimeException(e);
        } finally {
            //6. 释放连接
            txManager.release();
        }
    }
}

我们还需要将自己写的工具类加入xml中以便于spring进行注入:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd">
    <!-- 配置数据源 -->
    <bean id="dataSoure" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <!-- 连接数据库的必备信息-->
        <property name="driverClass" value="com.mysql.jdbc.Driver"></property>
    <property name="jdbcUrl" value="jdbc:mysql://localhost:3306/jd_learning"></property>
    <property name="user" value="root"></property>
    <property name="password" value="<密码>"></property>
    </bean>

    <!-- queryRunner不能是单例对象,防止多线程出现问题-->
    <bean id="runner" class="org.apache.commons.dbutils.QueryRunner" scope="prototype">
    </bean>

    <bean id="accountDao" class="com.jiading.dao.impl.AccountDaoImpl">
        <property name="runner" ref="runner"></property>
        <property name="connectionUtils" ref="connectionUtils"></property>
    </bean>

    <bean id="accountService" class="com.jiading.service.impl.AccountServiceImpl">
        <!-- 注入dao对象-->
        <property name="accountDao" ref="accountDao"></property>
        <property name="txManager" ref="txManager"></property>
    </bean>
    <!-- 配置connection工具类 ConnectionUtils-->
    <bean id="connectionUtils" class="com.jiading.utils.ConnectionUtils">
        <property name="dataSource" ref="dataSoure"></property>
    </bean>
    <!-- 配置事务管理器-->
    <bean id="txManager" class="com.jiading.utils.TransactionManager">
        <property name="connectionUtils" ref="connectionUtils"></property>
    </bean>
</beans>

这样我们就在允许多线程的前提下实现了数据库的事务,但是显然,这么写是有一些问题的:

  • 项目变得非常地复杂
  • 重复代码太多,特别是service中,每一个操作都要完成全套的事务相关操作
    对于这些问题,我们可以使用动态代理进行解决

    动态代理

    Java动态代理的实现请看这篇文章:https://www.cnblogs.com/jiading/p/12343777.html
    动态代理实现
    BeanFactory.java:

package com.jiading.factory;

import com.jiading.service.IAccountService;
import com.jiading.utils.TransactionManager;

import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;

/*
用于创建service的代理对象的工厂
 */
public class BeanFactory {
    public void setAccountService(IAccountService accountService) {
        this.accountService = accountService;
    }

    private IAccountService accountService;
    public void setTxManager(TransactionManager txManager) {
        this.txManager = txManager;
    }

    private TransactionManager txManager;
    /*
    获取service的代理对象
     */
    public IAccountService getAccountService(){
        IAccountService accountServiceProxy=(IAccountService)Proxy.newProxyInstance(accountService.getClass().getClassLoader(), accountService.getClass().getInterfaces(), new InvocationHandler() {
            @Override
            public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
                /*
                添加事务的支持
                 */
                Object rtValue=null;
                try {
                    //1.开启事务
                    txManager.beginTransaction();
                    //2.执行操作
                    rtValue = method.invoke(accountService, args);
                    //3.提交事务
                    txManager.commit();
                    //4.返回结果
                    return rtValue;
                } catch (Exception e) {
                    //5. 回滚事务
                    txManager.rollback();
                    throw new RuntimeException(e);
                } finally {
                    //6. 释放连接
                    txManager.release();
                }
            }
        });
        return accountServiceProxy;
    }
}

这应该比较好理解,就是将service的一个方法放在一个事务中,这样service中的transfer的各个步骤就是在一个事务中了
相应地,service中的事务控制就可以删除了。这就使得service对象的编写只需要考虑业务需求即可
AccountServiceImpl.java

package com.jiading.service.impl;

import com.jiading.dao.IAccountDao;
import com.jiading.domain.Account;
import com.jiading.service.IAccountService;
import com.jiading.utils.TransactionManager;

import java.util.List;

/*
事务的控制应该是在业务层的,而不是持久层
 */
public class AccountServiceImpl implements IAccountService {
    public void setAccountDao(IAccountDao accountDao) {
        this.accountDao = accountDao;
    }

    private IAccountDao accountDao;

    public void setTxManager(TransactionManager txManager) {
        this.txManager = txManager;
    }

    private TransactionManager txManager;

    @Override
    public List<Account> findAllAccount() {
        List<Account> allAccount = accountDao.findAllAccount();
        return allAccount;
    }

    @Override
    public Account findAccountById(Integer accountId) {
        Account accountById = accountDao.findAccountById(accountId);
        return accountById;

    }

    @Override
    public void saveAccount(Account acc) {
            accountDao.saveAccount(acc);
    }

    @Override
    public void updateAccount(Account account) {
            accountDao.updateAccount(account);
    }

    @Override
    public void deleteAccount(Integer accountId) {
            accountDao.deleteAccount(accountId);
    }

    @Override
    public void transfer(String sourceName, String targetName, Float money) {
        Account source = accountDao.findAccountByName(sourceName);
        Account target = accountDao.findAccountByName(targetName);
        source.setMoney(source.getMoney() - money);
        target.setMoney(target.getMoney() + money);
        accountDao.updateAccount(source);
        accountDao.updateAccount(target);
    }
}

还需要到bean.xml中配置一下
因为不需要在service中使用事务控制了,所以就不用在z其中注入事务控制器了:

    <bean id="accountService" class="com.jiading.service.impl.AccountServiceImpl">
        <!-- 注入dao对象-->
        <property name="accountDao" ref="accountDao"></property>
    </bean>

需要配置一下代理类和beanFactory:

<!--配置代理的service-->
    <bean id="proxyAccountService" factory-bean="beanFactory" factory-method="getAccountService"></bean>
    <!-- 配置beanFactory-->
    <bean id="beanFactory" class="com.jiading.factory.BeanFactory">
        <property name="accountService" ref="accountService"></property>
        <property name="txManager" ref="txManager"></property>
    </bean>

这样做的好处之前已经说过了,但是有没有什么缺点呢?有的,就是实现和配置起来很复杂。使用接下来我们就要介绍spring中的AOP,我们之后可以使用spring框架已经实现的功能,仅需要做配置就好

原文地址:https://www.cnblogs.com/jiading/p/12368808.html

时间: 2024-10-11 17:16:55

Spring框架5:事务和动态代理的相关文章

Spring之AOP原理_动态代理

面向方面编程(Aspect Oriented Programming,简称AOP)是一种声明式编程(Declarative Programming).声明式编程是和命令式编程(Imperative Programming)相对的概念.我们平时使用的编程语言,比如C++.Java.Ruby.Python等,都属命令式编程.命令式编程的意思是,程序员需要一步步写清楚程序需要如何做什么(How to do What).声明式编程的意思是,程序员不需要一步步告诉程序如何做,只需要告诉程序在哪些地方做什么

Spring框架中2种生成代理对象的方法

Spring框架中2种生成代理对象的方法 Jdk Proxy基于接口生成代理对象,只能赋值给接口的引用(默认使用jdk). Spring进一步封装 CGLIB,基于实现类生成代理对象,既可以赋值给接口的引用,也可以赋值给实现类的引用 JDK提供的Proxy,和spring进一步封装的CGLIB.二者生成的代理没有任何区别,生成的都是代理对象.只是生产方式不同,前者是基于接口生成代理,后者基于实现类生成代理对象 如何切换spring框架中默认生成代理的方式 <aop:config proxy-ta

细说Spring——AOP详解(动态代理实现AOP)

前言 嗯,我应该是有一段实现没有写过博客了,在写完了细说Spring——AOP详解(AOP概览)之后,我发现我不知道该怎么写AOP这一部分,所以就把写博客这件事给放下了,但是这件事情又不想就这么放弃,所以今天我仔细思考了一下,决定还是要克服困难,我仔细的想了一下怎么讲解AOP实现这一部分,然后我决定由浅入深的讲解动态代理,然后用动态代理实现一个简单的AOP,感觉这样能够让人对AOP的原理有一个比较深刻的认识,希望能帮到大家.而且最近学习又组建了ACM比赛的队伍,虽然已经要大三了,按理来说应该一心

Spring框架的事务管理及应用

Spring框架简介 Spring框架是一个2003年2月才出现的开源项目,该开源项目起源自Rod Johnson在2002年末出版的<Expert One-on-One J2EE Design and Development>一书中的基础性代码.在该书中,Rod Johnson倡导J2EE实用主义的设计思想,而Spring框架正是这一思想的更全面和具体的实现.Spring框架由一个容器,一个配置和组织组件的框架,和一组内置的为事务.持久化和Web用户接口提供的服务组成.作为一种轻量级的J2E

菜鸟学习Spring——60s让你学会动态代理

一.为什么要使用动态代理 当一个对象或多个对象实现了N中方法的时候,由于业务需求需要把这个对象和多个对象的N个方法加入一个共同的方法,比如把所有对象的所有方法加入事务这个时候有三种方法: 方法一:一个一个对象一个一个方法去加,很显然这个方法是一个比较笨的方法. 方法二:加一个静态代理对象将这个静态代理对象实现要加事务对象的接口.然后在静态代理对象里面每个方法里面加上事务. 方法三:使用动态代理对象,进行动态的加载事务. 使用动态代理是为了让对象实现了开闭原则,对扩展开放,而对修改关闭.Sprin

spring如何管理mybatis(一) ----- 动态代理接口

问题来源 最近在集成spring和mybatis时遇到了很多问题,从网上查了也解决了,但是就是心里有点别扭,想看看到底怎么回事,所以跟了下源码,终于发现了其中的奥妙. 问题分析 首先我们来看看基本的配置. spring的配置: <!-- 数据库配置 --> <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource"> <property name="

Spring总结七:AOP动态代理的实现

Spring中的AOP代理可以使JDK动态代理,也可以是CGLIB代理,前者基于接口,后者基于子类. 首先我们来用代码简单演示jdk动态代理: 现在有一个商品的增删改查的操作 /** * 商品操作接口 */ public interface ProductService { public void add(); public void edit(); public void delte(); public void select(); } /** * 实现类 */ public class Pr

Spring AOP基础之JDK动态代理

JDK动态代理 Jdk动态代理是装饰模式的一个典型用例,关于装饰模式这里不多解释,直接说重点吧.jdk动态代理实际上就是代替继承方案,在不破坏原始类的原则下,在运行期间为某个类动态注入一些新的方法.java.lang.reflect.Proxy提供了生成代理类的接口.进入源代码,我们可以看见关于Proxy的详细说明这里截取一些关键的部分: /** * {@code Proxy} provides static methods for creating dynamic proxy * classe

java之Spring(AOP)前奏-动态代理设计模式(上)

我们常常会遇到这样的事,项目经理让你为一个功能类再加一个功能A,然后你加班为这个类加上了功能A: 过了两天又来了新需求,再在A功能后面加上一个新功能B,你加班写好了这个功能B,加在了A后面:又过 了几天天,项目经理说这两个新加的功能顺序需要调换一下,然后你找到一个礼拜之前的写的源代码,看了 一遍想起来当时是怎么实现的了,这部分是功能A,那部分是功能B,然后巴拉巴拉换了顺序.看到这是不是 觉得很烦,动不动就要在源码上加新功能,完了又要在源码上换新功能的顺序,那么一大坨源码,还好是自 己写的源码,理