我正在使用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
方法将字符串作为输入。但是我需要在addCustomer
方法内部记录传递给方法的输入logBefore
。
有可能这样做吗?
addCustomer(..)
?