今天在替换代码的时候,对定时器进行了修改,怎么都不执行.
@Component
public class Scheduler {
@Scheduled(cron="0 30 2 * * ?")
public void handleDayBill() {
dosomething();
}
}
代码中@Component注解也加上了,在执行方法前也加上了@Scheduled
关键在于启动Application类上需要添加@EnableScheduling
@EnableScheduling
public class Application {}
排查了半个多小时,记录一下