美文网首页
Spring事务管理

Spring事务管理

作者: 又双叒叕苟了一天 | 来源:发表于2018-01-31 20:10 被阅读0次
    <bean id="transactionManager" class="org.springframework.jdbc.dataSourceTransactionManager">
      <property name="dataSource" ref="dataSource"></property>
    </bean>
    

    xml方式

    <tx:advice id="myAdvice" transaction-manager="transactionManager">
      <tx:attributes>
        <tx:method name="pay*" propagation="REQUIRED"/>
      </tx:attributes>
    </tx:advice>
    
    <aop:config>
      <aop:advicer advice-ref="myAdvice" pointcut="execution(* *..*.*(..))"/>
    </aop:config>
    

    注解方式

    <tx:annotation-driven transation-manager="transactionManager"/>
    

    在要加事务的serviceimpl上加
    @Transactional

    相关文章

      网友评论

          本文标题:Spring事务管理

          本文链接:https://www.haomeiwen.com/subject/qailzxtx.html