170627springboot编程之定时任务
Posted 目标奔雷手
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了170627springboot编程之定时任务相关的知识,希望对你有一定的参考价值。
springboot定时任务,比较简单!
1、编写DemoSchedule.java类
package com.rick.common.schedule; import org.springframework.context.annotation.Configuration; import org.springframework.scheduling.annotation.EnableScheduling; import org.springframework.scheduling.annotation.Scheduled; import java.text.SimpleDateFormat; import java.util.Calendar; /** * Desc : 定时任务 * User : RICK * Time : 2017/8/21 21:16 */ @Configuration @EnableScheduling public class DemoSchedule { //cron表达式 秒分时 日月周 年 @Scheduled(cron = "0/10 * * * * ?") //每10秒执行一次 public void demoPrint(){ System.out.println("现在时间:" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(Calendar.getInstance().getTime())); } }
2、启动项目测试
3、项目清单
以上是关于170627springboot编程之定时任务的主要内容,如果未能解决你的问题,请参考以下文章