Changes between Version 3 and Version 4 of applicationContext
- 날짜/시간:
- 2012-01-19 PM 2:25:40 (13 년 전)
Legend:
- 변경되지 않음
- 추가됨
- 제거됨
- 변경됨
-
applicationContext
v3 v4 90 90 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd 91 91 http://www.springframework.org/schema/aop 92 http://www.springframework.org/schema/aop/spring-aop- 2.0.xsd92 http://www.springframework.org/schema/aop/spring-aop-3.0.xsd 93 93 http://chrisrichardson.net/schema/arid 94 94 http://chrisrichardson.net/schema/arid.xsd"> 95 <!-- aop 관련 --> 96 <!-- Advice 클래스를 빈으로 등록 --> 97 <bean id="performanceTraceAdvice" 98 class="com.everland.ws.doremi.common.log.ProfilingAdvice" /> 95 99 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 96 109 <!-- db 관련 끝 --> 97 110 <util:properties id="db" location="classpath:db.properties"/> 130 143 </beans:beans> 131 144 145 132 146 }}}