09 spring 事务

1. 编程式事务控制相关对象

1.1 PlatformTransactionManager

PlatformTransactionManager 接口是 spring 的事务管理器,它里面提供了我们常用的操作事务的方法。

在这里插入图片描述

1.2 TransactionDefinition

在这里插入图片描述

  1. 事务隔离级别
  • ISOLATION_DEFAULT
  • ISOLATION_READ_UNCOMMITTED
  • ISOLATION_READ_COMMITTED
  • ISOLATION_REPEATABLE_READ
  • ISOLATION_SERIALIZABLE

2.基于 XML 的声明式事务控制

2.1 什么是声明式事务控制

Spring 的声明式事务顾名思义就是采用声明的方式来处理事务。这里所说的声明,就是指在配置文件中声明,用在 Spring 配置文件中声明式的处理事务来代替代码式的处理事务。

作用

  • 事务管理不侵入开发的组件(解耦合)。具体来说,业务逻辑对象就不会意识到正在事务管理之中,事实上也应该如此,因为事务管理是属于系统层面的服务,而不是业务逻辑的一部分,如果想要改变事务管理策划的话,也只需要在定义文件中重新配置即可
  • 在不需要事务管理的时候,只要在设定文件上修改一下,即可移去事务管理服务,无需改变代码重新编译,这样维护起来极其方便,实际上就是AOP思想

2.2 声明式事务控制的实现

明确以下三点

  1. 切点是谁?
  2. 通知是谁?
  3. 切面是谁?

具体步骤 (在applicationContext.xml中进行配置)

  1. 要引用事务,必须先配置事务平台管理器
<!--    配置平台事务管理-->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
     <property name="dataSource" ref="dataSource"/>
</bean>
  1. 配置目标对象(切点)
<!--目标对象(被增强的对象)  内部的方法就是切点-->
<bean id="accountService" class="com.itheima.service.impl.AccountServiceImpl">
    <property name="accountDao" ref="accountDao"/>
</bean>
  1. 配置通知
<!--通知  事务通知
transaction-manager:平台事务管理器-->
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<!--设置事务属性信息-->
    <tx:attributes>
    
    <!--*代表针对所有对象-->
        <tx:method name="*"/>
    </tx:attributes>
</tx:advice>
  1. 配置织入
<!--    配置事务织入
事务增强就用aop:advisor
-->
<aop:config>
    <aop:advisor advice-ref="txAdvice" pointcut="execution(* com.itheima.service..impl.*.*(..))"/>
</aop:config>

3. 基于注解的声明式事务控制

在Dao层加入注解

@Repository("accountDao")
public class AccountDaoImpl implements AccountDao {
//实现jdbc模板
    @Autowired
    private JdbcTemplate jdbcTemplate;

    public void out(String outMan, double money) {
        jdbcTemplate.update("update account set money=money-? where name=?",money,outMan);
    }

    public void in(String inMan, double money) {
        jdbcTemplate.update("update account set money=money+? where name=?",money,inMan);
    }
}

在service层添加注解

@Service("accountService")
public class AccountServiceImpl implements AccountService {

    @Autowired
    private AccountDao accountDao;

    @Transactional(isolation = Isolation.READ_COMMITTED,propagation = Propagation.REQUIRED)
    public void transfer(String outMan, String inMan, double money) {
        //当没有进行事务管理时,先调用out函数,甲的钱少了,但是执行1/0后程序出现错误,代码不会往后执行,导致乙的钱没有增加
        //此时创建一个事务,把它提取出来,当作通知,对原有代码进行增强
        accountDao.out(outMan,money);
        int i = 1/0;
        accountDao.in(inMan,money);
    }
}

在applicationContext.xml文件中,先扫描,再配置

//扫描
 <context:component-scan base-package="com.itheima"/>

//平台事务管理器和xml文件配置一样,不一样的地方在于,注解驱动是tx:annotation-driven
<!--    配置平台事务管理-->
        <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
            <property name="dataSource" ref="dataSource"/>
         </bean>

<!--    事物的注解驱动-->
    <tx:annotation-driven transaction-manager="transactionManager"/>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值