天天看點

@Scheduled定時任務不執行

寫了個定時任務

服務啟動後沒有反應

@Scheduled(fixedRate = 1050 * 60)
    public void drefresh(){
        System.out.println("執行refresh:"+ DateUtils.getTime());
        List<String> list = new ArrayList<>();
        
    }
           

解決方法:

第一種: 在類上加注解 @EnableScheduling,隻在目前類起作用

@Scheduled定時任務不執行

第二種: 在啟動類上加注解 @EnableScheduling,整個服務的定時都會生效

@Scheduled定時任務不執行