Spring Boot - Aspect-Oriented Programming
Given this Spring AOP advice snippet, what will be logged when
processOrder() method completes successfully?@Before("execution(* com.example.service.*.*(..))")
public void logStart() {
System.out.println("Method started");
}
@AfterReturning("execution(* com.example.service.*.*(..))")
public void logEnd() {
System.out.println("Method completed");
}