Spring Boot - Aspect-Oriented Programming
Why does this
@Around advice cause a stack overflow?@Around("execution(* com.example.*.*(..))")
public Object logAround(ProceedingJoinPoint pjp) throws Throwable {
System.out.println("Before method");
Object result = logAround(pjp);
System.out.println("After method");
return result;
}