# springboot-schedule **Repository Path**: wangjiaqian/springboot-schedule ## Basic Information - **Project Name**: springboot-schedule - **Description**: spring boot开启定时任务 - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 2 - **Created**: 2019-07-26 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # springboot-schedule springboot定时任务demo ## 使用SpringBoot创建定时任务非常简单, 目前主要有以下三种创建方式: - 一、基于注解(@Scheduled) - 二、基于接口(SchedulingConfigurer) 前者相信大家都很熟悉,但是实际使用中我们往往想从数据库中读取指定时间来动态执行定时任务,这时候基于接口的定时任务就派上用场了。 - 三、基于注解设定多线程定时任务 ### 详细内容,参见此处 [https://blog.mmzsblog.cn/](https://blog.mmzsblog.cn/springboot/%E7%8E%A9%E8%BD%ACSpringBoot%E4%B9%8B%E5%AE%9A%E6%97%B6%E4%BB%BB%E5%8A%A1%E8%AF%A6%E8%A7%A3/)