Spring Boot - Aspect-Oriented Programming
What is wrong with this
@Around advice implementation?
@Around("execution(* com.example..*(..))")
public Object advice(ProceedingJoinPoint pjp) throws Throwable {
System.out.println("Start");
Object result = pjp.proceed();
System.out.println("End");
return null;
}