java定时任务的设置

第一种:

找到spring配置文件,通过启动时候加载配置文件加载定时任务

    
    
    
        
          
    
    

配置文件的beans里面加入带*号的部分


第二种:

注解配置

package com.fujia.timer;

@Component
@PropertySource("classpath:config.properties")
public class Timer {
   
    @Autowired
    ITimerService  timeService;

    @Scheduled(cron = "${配置文件.schedule}")
    public void getTimer() {
      timeService.getTimer();
    }
}

对应config.properties中:
在这里插入图片描述

你可能感兴趣的:(Java,java定时任务)