配置步骤
一、配置事务管理器
在Bean配置文件中配置事务管理器。
需要注入数据源。
举个例子:
<!-- 配置事务管理器 -->
<bean id="transactionManager"
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"></property>
</bean>
二、 配置事务属性
需要先导入 tx 命名空间。
使用
还需要指定transaction-manager属性,其值Bean配置文件中事务管理器的id属性值。
在
在
举个例子:
<!-- 配置事务通知 -->
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<!-- 根据方法名指定事务的属性 -->
<tx:method name="BookShopXmlService" propagation="REQUIRED"/>
<tx:method name="get*" read-only="true"/>
<tx:method name="find*" read-only="true"/>
<tx:method name="*"/>
</tx:attributes>
</tx:advice>
三、 配置事务切入点,把事务切入点与事务关联起来
在
在 在
举个例子:
<!-- 配置事务切入点,以及把事务切入点和事务属性关联起来 -->
<aop:config>
<aop:pointcut expression="execution(* com.sqp.spring.service.*.*(..))"
id="txPointcut"/>
<aop:advisor advice-ref="txAdvice" pointcut-ref="txPointcut"/>
</aop:config>
tx:method属性详解
https://blog.csdn.net/weixin_46053707/article/details/104498698
扫描二维码,在手机上阅读!
评论