spring配置文件实例剖析之一:方法名称匹配切入点通知
<bean id="singler" />
<!-- 引入通知(不常用): arg0表示目标对象,arg1表示要实现的接口,arg2表示arg1接口的默认实现类 -->
<aop:declare-parents types-matching="cn.itcast.spring.pojoxml.Singer"
implement-interface="cn.itcast.spring.pojoxml.ModifyDate"
default-impl="cn.itcast.spring.pojoxml.ModifyDateImpl" />
<aop:before method="takeSeats" pointcut-ref="audiencePointCut" />
<aop:before method="turnOff" pointcut-ref="audiencePointCut"
arg-names="jp" />
<!-- 方法正常返回后执行的通知 -->
<aop:after-returning method="applaud"
pointcut-ref="audiencePointCut" returning="res" />
<!-- 捕获异常后执行的通知 -->
<aop:after-throwing method="payOff" pointcut-ref="audiencePointCut" />
<!-- 无论有无异常都会执行的通知 -->
<aop:after method="goHome" pointcut-ref="audiencePointCut" />
</aop:aspect>
</aop:config>