# springboot-schedule **Repository Path**: li_xiangping/springboot-schedule ## Basic Information - **Project Name**: springboot-schedule - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-01-04 - **Last Updated**: 2022-01-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # springboot-schedule springboot定时任务demo ## 使用SpringBoot创建定时任务非常简单, 目前主要有以下三种创建方式: - 一、基于注解(@Scheduled) - 二、基于接口(SchedulingConfigurer) 前者相信大家都很熟悉,但是实际使用中我们往往想从数据库中读取指定时间来动态执行定时任务,这时候基于接口的定时任务就派上用场了。 - 三、基于注解设定多线程定时任务 ### 详细内容,参见此处 [https://www.mmzsblog.cn/](https://www.mmzsblog.cn/articles/2019/08/08/1565247960802.html)