1 package test.spring.aspect; 2 3 import java.lang.reflect.Method ; 4 5 import org.springframework.aop.AfterReturningAdvice; 6 import test.spring.Test; 7 8 public class MyAfterReturningAdvice implements AfterReturningAdvice { 9 public void afterReturning(Object object, Method m, Object [] args, Object target) throws Throwable { 10 Test.log("afterReturning "); 11 } 12 } 13 | Popular Tags |