Skip to content

Commit

Permalink
Merge pull request spring-projects#18558 from jaferkhan
Browse files Browse the repository at this point in the history
* pr/18558:
  Fix package in AOP pointcut

Closes spring-projectsgh-18558
  • Loading branch information
snicoll committed Oct 13, 2019
2 parents 53b0569 + 56840f3 commit f6901a5
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -26,7 +26,7 @@
@Component
public class ServiceMonitor {

@AfterReturning("execution(* sample..*Service.*(..))")
@AfterReturning("execution(* smoketest..*Service.*(..))")
public void logServiceAccess(JoinPoint joinPoint) {
System.out.println("Completed: " + joinPoint);
}
Expand Down

0 comments on commit f6901a5

Please sign in to comment.