定时任务笔记

125 阅读1分钟

image.png

@Slf4j
@Component
@EnableScheduling
@EnableAsync
public class HelloSchedule {
    @Async
    @Scheduled(cron = "* * * * * ?")
    public void hello(){
        log.info("hello...");
    }
}

image.png

image.png

image.png