声明式事务
1. 事务回顾
-
ACID原则:
- 原子性
- 一个事务内的操作,要么同时成功,要么同时失败
- 一致性
- 一个事务必须使数据库从一个一致性状态变换到另一个一致性状态
- 与原子性的区别: 一致性是基础,也是最终目的,其他三个特性(原子性、隔离性和持久性)都是为了保证一致性的
- 隔离性
- 多个业务可能操作同一个资源,防止数据损坏
- 持久性
- 事务一旦提交,无论系统发生什么问题,结果都不会再被影响,被持久化的写到存储器中!
- 原子性
-
把一组业务当成一个业务来做,要么都成功,要么都失败
-
事务在项目开发中,十分的重要,设计到数据的一致性问题,不能马虎
-
确保完整性和一致性
2. Spring中的事务管理
声明式事务要在Spring中配置
<!--配置声明式事务-->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"/>
</bean>
<!--结合AOP,实现事务的织入-->
<!--配置事务的通知-->
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<!--给哪些方法配置事务-->
<!--配置事务的传播特性 propagation-->
<tx:attributes>
<tx:method name="add" propagation="required"/>
<tx:method name="delete" propagation="required"/>
<tx:method name="update" propagation="required"/>
<!--query开头的方法,只能对数据库进行查询操作-->
<tx:method name="query" read-only="true"/>
<!--所有方法-->
<tx:method name="*" propagation="required"/>
</tx:attributes>
</tx:advice>
<!--设置事务切入-->
<aop:config>
<aop:pointcut id="txPointCut" expression="execution(* com.wang.mapper.* .*(..))"/>
<aop:advisor advice-ref="txAdvice" pointcut-ref="txPointCut"/>
</aop:config>
原文链接:https://www.f2er.com/spring/883264.html