Pointcut ; @Aspect public class LogAspect { /*切入点*/ @Pointcut("execution(void *Phone(int))") public void p1(){} @Before("p1()") public ...
確定! 回上一頁