本文主要是介绍Spring声明式事务,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
Spring声明式事务
需要在Spring的xml配置文件中创建一个 DataSourceTransactionManager 对象:
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<constructor-arg ref="dataSource" />
</bean>
<!-- advice配置事务通知,使用唯一的Spring事务管理器 -->
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<!-- 这里有其中事务传播机制有七大种。-->
<!-- name为为那些方法配置事务-->
<tx:method name="add*" propagation="REQUIRED"/>
<tx:method name="delete*"/>
<tx:method name="update*"/>
<tx:method name="select*" read-only="true"/>
</tx:attributes>
</tx:advice>
<!-- 通过AOP植入的方式插入事务-->
<aop:config>
<aop:pointcut id="txpoint" expression="execution(* com.kuang.mapper.*.*(..))"/>
<aop:advisor advice-ref="txAdvice" pointcut-ref="txpoint"/>
</aop:config>
这篇关于Spring声明式事务的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!