我使用的是 Spring AOP,有以下方面:
@Aspect
public class LoggingAspect {
@Before("execution(* com.mkyong.customer.bo.CustomerBo.addCustomer(..))")
public void logBefore(JoinPoint joinPoint) {
System.out.println("logBefore() is running!");
System.out.println("hijacked : " + joinPoint.getSignature().getName());
System.out.println("******");
}
}
以上方面拦截 addCustomer
方法的执行。 addCustomer
方法采用字符串作为输入。
但是我需要在 logBefore
方法中记录传递给 addCustomer
方法的输入。
有可能这样做吗?