Spring Boot - Aspect-Oriented Programming
Given this advice code snippet, what will be logged when
calculateSum(5, 10) is called?@Before("execution(* com.example.Calculator.calculateSum(..))")
public void logBefore(JoinPoint joinPoint) {
System.out.println("Starting: " + joinPoint.getSignature().getName());
}