Spring Boot - Aspect-Oriented Programming
What is wrong with this aspect code?
@Aspect
public class MyAspect {
@Before("execution(* com.example.*.*(..))")
public void advice() {
System.out.println("Advice called");
}
}