Changes between Version 2 and Version 3 of aop
- 날짜/시간:
- 2012-08-15 AM 1:19:58 (13 년 전)
Legend:
- 변경되지 않음
- 추가됨
- 제거됨
- 변경됨
-
aop
v2 v3 17 17 </aop:config> 18 18 19 20 <aop:config> 21 22 <aop:aspect ref="audience"> 23 24 <aop:pointcut id="performance" expression=""/> 25 26 <aop:before pointcut-ref="performance" method="takeSeats"/> 27 28 <aop:before pointcut-ref="performance" method="turnOffCellPhones"/> 29 30 <aop:after-returning pointcut-ref="performance" method="applaud"/> 31 32 <aop:after-throwing pointcut-ref="performance" method="demandRefund"/> 33 34 </aop:aspect> 35 36 </aop:config> 19 37 20 38 <bean id="audience" class="com.springinactin.springidol.Audience"/>