@Component
public class QuartzService {
// 上一次 启动时间点之后 X秒执行一次
@Scheduled(fixedRate =5000)
public void timerToZZP(){
System.out.println("ZZP:" +new Random().nextLong() +new SimpleDateFormat("HH:mm:ss").format(new Date()));
}
}
@Component
public class QuartzService {
// 上一次 启动时间点之后 X秒执行一次
@Scheduled(fixedRate =5000)
public void timerToZZP(){
System.out.println("ZZP:" +new Random().nextLong() +new SimpleDateFormat("HH:mm:ss").format(new Date()));
}
}
本文标题:Timer定时器
本文链接:https://www.haomeiwen.com/subject/myubzftx.html
网友评论