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