J'utilise Spring AOP et j'ai l'aspect suivant :
@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("******");
}
}
Intercepts d'aspect supérieur addCustomer
l'exécution de la méthode. addCustomer
prend une chaîne de caractères en entrée. Mais j'ai besoin d'enregistrer l'entrée passée à addCustomer
méthode à l'intérieur logBefore
méthode.
Est-il possible de le faire ?