码迷,mamicode.com
首页 > 编程语言 > 详细

配置 Spring 的声明式事务

时间:2014-08-05 18:30:39      阅读:284      评论:0      收藏:0      [点我收藏+]

标签:io   cti   管理   new   res   ad   ui   ef   

<!-- 1. 配置事务管理器 -->
<bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">
  <property name="sessionFactory" ref="sessionFactory"></property>
</bean>

<!-- 2. 配置事务属性, 需要事务管理器 -->
<tx:advice id="txAdvice" transaction-manager="transactionManager">
  <tx:attributes>
    <tx:method name="get*" read-only="true"/>
    <tx:method name="purchase" propagation="REQUIRES_NEW"/>
    <tx:method name="*"/>
  </tx:attributes>
</tx:advice>

<!-- 3. 配置事务切点, 并把切点和事务属性关联起来 -->
<aop:config>
  <aop:pointcut expression="execution(* com.atguigu.spring.hibernate.service.*.*(..))"  id="txPointcut"/>
  <aop:advisor advice-ref="txAdvice" pointcut-ref="txPointcut"/>
</aop:config>

配置 Spring 的声明式事务,布布扣,bubuko.com

配置 Spring 的声明式事务

标签:io   cti   管理   new   res   ad   ui   ef   

原文地址:http://www.cnblogs.com/a757956132/p/3892587.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!