Spring Boot - Aspect-Oriented Programming
Identify the error in this aspect code:
@Aspect
public class MyAspect {
@Before("execution(* someMethod())")
public void logBefore() {
System.out.println("Before method");
}
public void someMethod() {
System.out.println("Inside someMethod");
}
}