Changes between Version 3 and Version 4 of applicationContext

차이점 주위로
다음 차이점은 무시하기:
작성자:
anonymous (IP: 122.101.189.54)
날짜/시간:
2012-01-19 PM 2:25:40 (13 년 전)
설명:

--

Legend:

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

    v3 v4  
    9090                http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd 
    9191                http://www.springframework.org/schema/aop  
    92                 http://www.springframework.org/schema/aop/spring-aop-2.0.xsd 
     92                http://www.springframework.org/schema/aop/spring-aop-3.0.xsd 
    9393                http://chrisrichardson.net/schema/arid  
    9494                http://chrisrichardson.net/schema/arid.xsd"> 
     95        <!-- aop 관련 --> 
     96                <!-- Advice 클래스를 빈으로 등록 --> 
     97        <bean id="performanceTraceAdvice" 
     98                class="com.everland.ws.doremi.common.log.ProfilingAdvice" /> 
    9599 
     100        <!-- Aspect 설정: Advice를 어떤 Pointcut에 적용할 지 설정 --> 
     101        <aop:config> 
     102                <aop:aspect id="traceAspect1" ref="performanceTraceAdvice"> 
     103                        <aop:pointcut id="publicMethod" 
     104                                expression="execution(public * com.everland.ws.*.doremi.*.*.*(..))" /> 
     105                        <aop:around pointcut-ref="publicMethod" method="trace" /> 
     106                </aop:aspect> 
     107        </aop:config> 
     108         
    96109        <!-- db 관련 끝 --> 
    97110        <util:properties id="db" location="classpath:db.properties"/> 
    130143</beans:beans> 
    131144 
     145 
    132146}}}