01: package test.spring.aspect;
02:
03: import java.lang.reflect.Method;
04:
05: import org.springframework.aop.AfterReturningAdvice;
06: import test.spring.Test;
07:
08: public class MyAfterReturningAdvice implements AfterReturningAdvice {
09: public void afterReturning(Object object, Method m, Object[] args,
10: Object target) throws Throwable {
11: Test.log("afterReturning ");
12: }
13: }
|