spring的 AOP应用——事物提交

<aop:config>
 <aop:advisor pointcut="execution(* com.zte..*Service.*(..))"
 advice-ref="txAdvice" />
</aop:config>

<tx:advice id="txAdvice">
 <tx:attributes>
  <tx:method name="*" />
  <tx:method name="load*" read-only="false" />
 </tx:attributes>
</tx:advice>

 

--对所有的service起事务提交的作用

你可能感兴趣的:(spring)