美文网首页
Timer定时器

Timer定时器

作者: 微雨花间_b690 | 来源:发表于2018-10-21 15:23 被阅读0次

    @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