springboot @Scheduled实现定时任务,@EnableAsync,@Async异步任务
实现定时任务的方式有如下几种,本文使用的是每3种1、常见定时任务Java自带的java.util.Timer类timer:配置比较麻烦,时间延后问题timertask:不推荐2、Quartz框架配置更简单xml或者注解3、SpringBoot使用注解方式开启定时任务1)启动类里面@EnableScheduling开启定时任务,自动扫描2)定时任务业务类加注解@Component被容器扫描3)定时执