Merge pull request #18558 from jaferkhan

* pr/18558:
  Fix package in AOP pointcut

Closes gh-18558
This commit is contained in:
Stephane Nicoll
2019-10-13 08:08:05 +02:00

View File

@@ -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);
}