fourcal/src/main/java/cn/palmte/work/config/StaticScheduleTask.java

18 lines
475 B
Java
Raw Normal View History

2021-10-28 08:09:50 +00:00
package cn.palmte.work.config;
import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.Scheduled;
@Configuration //1.主要用于标记配置类兼备Component的效果。
@EnableScheduling // 2.开启定时任务
public class StaticScheduleTask {
@Scheduled(cron = "0 0/5 * * * ?")
private void temp() throws Exception {
}
}