spring 使用 声明式事务实现事务功能

<!-- 配置hibernate事务管理器 -->
 <bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
  <property name="sessionFactory" ref="sessionFactory"></property>
 </bean>
 <!-- 定义事务通知指明需要制定的事务管理器 -->
 <tx:advice id="txAdvice" transaction-manager="txManager">
  <tx:attributes>
   <tx:method name="get*" read-only="true"/>
   <tx:method name="insert*" propagation="REQUIRED"/>
   <tx:method name="update*" propagation="REQUIRED"/>
   <tx:method name="delete*" propagation="REQUIRED"/>
  </tx:attributes>
 </tx:advice>
 <aop:config>
  <!-- 声明那些方法应用这些规则 -->
  <aop:pointcut expression="execution(* com.dragon.dao.*.*(..))" id="daoMethod"/>
  <!-- 将事务通知与应用方法组合 -->
  <aop:advisor advice-ref="txAdvice" pointcut-ref="daoMethod"/>
 </aop:config>

希望对您有所帮助 这是完整的声明式事务的代码  spring整合hibenrate的