首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

spring配置文件范例剖析之一:方法名称匹配切入点通知

2012-10-06 
spring配置文件实例剖析之一:方法名称匹配切入点通知bean idsingler /!-- 引入通知(不常用): arg0表

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>

热点排行