1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?xml version="1.0" encoding="UTF-8"?>
- <beans xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
- xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
- xsi:schemaLocation="
- http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
- http://www.springframework.org/schema/context
- http://www.springframework.org/schema/context/spring-context-3.0.xsd
- http://www.springframework.org/schema/aop
- http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
- http://www.springframework.org/schema/tx
- http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">
- <!-- 事务管理器(声明式事务) -->
- <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
- <property name="dataSource" ref="dataSource" />
- </bean>
-
- <!-- 启动事务注解(方式1:注解方式) -->
- <tx:annotation-driven transaction-manager="transactionManager" proxy-target-class="true"/>
-
- <!-- 事务通知(方式2:XML事务管理) -->
- <tx:advice id="txAdvice" transaction-manager="transactionManager">
- <tx:attributes>
- <tx:method name="detail*" propagation="SUPPORTS" />
- <tx:method name="visit*" propagation="SUPPORTS" />
- <tx:method name="get*" propagation="SUPPORTS" />
- <tx:method name="find*" propagation="SUPPORTS" />
- <tx:method name="check*" propagation="SUPPORTS" />
- <tx:method name="list*" propagation="SUPPORTS" />
- <tx:method name="*" propagation="REQUIRED" rollback-for="exception" />
- </tx:attributes>
- </tx:advice>
- <!-- AOP配置 -->
- <aop:config>
- <!-- 定义一个切入点 -->
- <aop:pointcut id="txoperation" expression="execution(* com.xxl.service.imp.*.*(..))" />
- <!-- 切入点事务通知 -->
- <aop:advisor pointcut-ref="txoperation" advice-ref="txAdvice" />
- </aop:config>
-
- </beans>
|