AOP 로깅과 성능측정 Interceptor
출처 : http://whiteship.tistory.com/1099 디버그 인터셉터 :: org.springframework.aop.interceptor.DebugInterceptor 성능 측정 인터셉터 :: org.springframework.aop.interceptor.PerformanceMonitorInterceptor 사용법은 ProxyFactoryBean으로 간단하게 설정하여 사용할 수 있습니다. < bean id="proxy" class="org.springframework.aop.framework.ProxyFactoryBean"> <property name="target" ref="" /> <property name="interceptorNames"> <list> <value>global*</value> </list> </property> </bean> <bean id="global_debug" class="org.springframework.aop.interceptor.DebugInterceptor" /> <bean id="global_performance" class="org.springframework.aop.interceptor.Perfor...