DeltaSpike @Scheduled does not firing

496 Views Asked by At

My job annotated with @Scheduled does not fire the task. I am using Wildfly 10

deltaspike-scheduler-module 1.5.3

quartz 2.2.2

Quartz alone works fine.

My actual code problem:

@Scheduled(cronExpression = "0 * * * * ?")
public class CronTask implements Job{

static public final Logger log = Logger.getLogger(CronTask.class.getName());

@Override
public void execute(JobExecutionContext arg0) throws JobExecutionException {
    log.info("Run");
    System.out.println("aaaaa");


  }

}

Any help is welcome.

PS: This code on Jboss EAP works

3

There are 3 best solutions below

0
On
0
On

I made it work that way, I use Deltaspike. Try another cron expression, like 0 0/1 * * * ? that should trigger it once per minute

0
On

i hat to make it @ApplicationScoped to get picked up!

    @AppplicationScoped
    @Scheduled(cronExpression = "0 * * * * ?")
    public class CronTask implements Job{

    static public final Logger log = Logger.getLogger(CronTask.class.getName());

    @Override
    public void execute(JobExecutionContext arg0) throws JobExecutionException {
        log.info("Run");
        System.out.println("aaaaa");
      }
    }

Wildfly 16, Deltaspike Version 1.9.1