SpringBoot实战教程-知识点拾遗
程序员文章站
2022-05-07 18:13:57
本篇知识点包括@Scheduled创建定时任务、@Async实现异步调用、 SpringBoot整合拦截器、多种发布打包方式等。...
本篇知识点包括@Scheduled创建定时任务、@Async实现异步调用、 SpringBoot整合拦截器、多种发布打包方式等。
文章目录
12.1 使用@Scheduled创建定时任务
在Spring Boot的主类(启动类)中加入@EnableScheduling注解,启用定时任务的配置。@Scheduled支持cron表达式。
创建如下类,启动应用。
import org.springframework.scheduling.annotation.Scheduled
本文地址:https://blog.csdn.net/zpcandzhj/article/details/107144860
上一篇: 3-8 放眼世界
下一篇: 荐 Java自学笔记4