编程语言
首页 > 编程语言> > java – 使用@Scheduled Spring注释的方法的切入点

java – 使用@Scheduled Spring注释的方法的切入点

作者:互联网

我想为使用@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")
}

任何人都可以建议在@Scheduled注释方法的周围/之前有任何其他方式吗?

解决方法:

您要查找的切入点可以指定如下:

@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注释.此类中的方法需要作为建议应用.

此外,您需要确保通过扫描可以检测到具有@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 -->

标签:java,spring,aspectj,spring-scheduled
来源: https://codeday.me/bug/20190629/1326998.html