我正在使用SpringAOP并且有以下方面:@AspectpublicclassLoggingAspect{@Before("execution(*com.mkyong.customer.bo.CustomerBo.addCustomer(..))")publicvoidlogBefore(JoinPointjoinPoint){System.out.println("logBefore()isrunning!");System.out.println("hijacked:"+joinPoint.getSignature().getName());System.out.println(