Changes between Version 2 and Version 3 of aop

차이점 주위로
다음 차이점은 무시하기:
작성자:
anonymous (IP: 221.150.127.103)
날짜/시간:
2012-08-15 AM 1:19:58 (13 년 전)
설명:

--

Legend:

변경되지 않음
추가됨
제거됨
변경됨
  • aop

    v2 v3  
    1717</aop:config> 
    1818 
     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> 
    1937 
    2038<bean id="audience" class="com.springinactin.springidol.Audience"/>