Spring Boot - Aspect-Oriented Programming
Identify the error in this
@Around advice method:
@Around("execution(* someMethod())")
public Object aroundAdvice(ProceedingJoinPoint joinPoint) {
System.out.println("Start");
Object result = joinPoint.proceed();
System.out.println("End");
return result;
}