我希望为使用@Scheduled
注释的方法设置AspectJ切入点。试过不同的方法但没有任何效果。
1)
@Pointcut("execution(@org.springframework.scheduling.annotation.Scheduled * * (..))")
public void scheduledJobs() {}
@Around("scheduledJobs()")
public Object profileScheduledJobs(ProceedingJoinPoint joinPoint) throws Throwable {
LOG.info("testing")
}
2)。
@Pointcut("within(@org.springframework.scheduling.annotation.Scheduled *)")
public void scheduledJobs() {}
@Pointcut("execution(public * *(..))")
public void publicMethod() {}
@Around("scheduledJobs() && publicMethod()")
public Object profileScheduledJobs(ProceedingJoinPoint joinPoint) throws Throwable {
LOG.info("testing")
}
有人可以建议使用其他方式对around
注释方法提出before
/ @Scheduled
建议吗?
答案 0 :(得分:4)
您要查找的切入点可以指定如下:
@Aspect
public class SomeClass {
@Around("@annotation(org.springframework.scheduling.annotation.Scheduled)")
public void doIt(ProceedingJoinPoint pjp) throws Throwable {
System.out.println("before");
pjp.proceed();
System.out.println("After");
}
}
我不确定这是否是你需要的全部。所以我也要发布解决方案的其他部分。
首先,请注意课程上的@Aspect
注释。此类中的方法需要应用为advice
。
此外,您需要确保通过扫描可以检测到具有@Scheduled
方法的类。您可以通过注释具有@Component
注释的类来完成此操作。例如:
@Component
public class OtherClass {
@Scheduled(fixedDelay = 5000)
public void doSomething() {
System.out.println("Scheduled Execution");
}
}
现在,为此,弹簧配置中所需的部件如下:
<context:component-scan base-package="com.example.mvc" />
<aop:aspectj-autoproxy /> <!-- For @Aspect to work -->
<task:annotation-driven /> <!-- For @Scheduled to work -->