Fix package in AOP pointcut

See gh-18558
pull/18571/head
Jafer Khan 5 years ago committed by Stephane Nicoll
parent 53b0569dae
commit 56840f32fe

@ -26,7 +26,7 @@ import org.springframework.stereotype.Component;
@Component
public class ServiceMonitor {
@AfterReturning("execution(* sample..*Service.*(..))")
@AfterReturning("execution(* smoketest..*Service.*(..))")
public void logServiceAccess(JoinPoint joinPoint) {
System.out.println("Completed: " + joinPoint);
}

Loading…
Cancel
Save