将通知织入目标
<!-- 配置织入 --><aop:config >
<!-- 配置切点表达式 -->
<aop:pointcut expression="execution(*com.spring.service.*ServiceImpl.*(..))" id="txPc"/>
<!-- 配置切面 : 通知+切点
advice-ref:通知的名称
pointcut-ref:切点的名称
-->
<aop:advisor advice-ref="txAdvice" pointcut-ref="txPc" />
</aop:config>
(3)、注解配置方式
导入所需要的 jar 包和约束
开启注解管理事务
<!-- 开启使用注解管理事务 --><tx:annotation-driven/>
在具体业务中使用注解
扫描关注微信公众号,了解更多