Spring Boot - Aspect-Oriented Programming
Given this aspect code snippet, what will be printed when
myService.process() is called?@Aspect
@Component
public class LoggingAspect {
@Before("execution(* com.example.MyService.process(..))")
public void logBefore() {
System.out.println("Start processing");
}
}