事务传播行为

来源:互联网 发布:什么是竞品 知乎 编辑:程序博客网 时间:2024/05/21 00:52

http://zlk.iteye.com/blog/609167

在spring配置文件applicationcontext.xml中的配置如下

<!-- 所有方法使用PROPAGATION_REQUIRED类型的事务 --><bean id="interceptorTransaction"class="org.springframework.transaction.interceptor.TransactionInterceptor"><property name="transactionManager"><ref local="transaction" /></property><property name="transactionAttributes"><props><prop key="*">PROPAGATION_REQUIRED</prop></props></property></bean>

<!-- 事务处理设置 --><bean id="transaction"class="org.springframework.orm.hibernate3.HibernateTransactionManager"><property name="sessionFactory"><ref local="sessionFactory" /></property></bean>


0 0