SpringBoot定时任务
1.启动类加@EnableScheduling注解
1.定时任务类
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
//这个注解一定要记得加,否则无法启动定时任务。
@Component
public class TimerServiceImpl {
//利用反射获取信息
private static final Logger logger = LoggerFactory.getLogger(TimerServiceImpl.class);
//定时任务 1000毫秒=1秒,readfile()为调取的监听的方法。
@Scheduled(fixedRate = 1000)
public void reportCurrent() {
logger.info("正在监听,D:\\test", readfile());
}
//被定时任务调取的方法
public void readfile() {
}
}
郝瑞林
发布了14 篇原创文章 · 获赞 2 · 访问量 292
私信
关注