java springboot使用定时器

1、在当前 service层标注注解 @EnableScheduling 用来开启定时功能

2、在指定当方法上标注注解 @Scheduled 则当前方法会按照指定规则运行

3、在 @Scheduled注解中添加属性,用来表明执行规则

@EnableScheduling
public class SystemBulletinService extends AbstractService {

    @Autowired
    SystemBulletinDao systemBulletinDao;

    @Scheduled(cron = "*/5 * * * * ?")//每5秒执行一次
    public void myTask(){
        System.out.println("这是。。。。定时器");
    }

 

参考:https://www.cnblogs.com/dybk/p/7728767.html

上一篇:@Scheduled 注解配置


下一篇:Springboot项目整合@Scheduled定时任务