# springboot-quartz **Repository Path**: Jyokiyi/springboot-quartz ## Basic Information - **Project Name**: springboot-quartz - **Description**: 基于springboot的任务调用 - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 0 - **Created**: 2018-01-19 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # springboot-quartz 基于springboot的任务调用 ## Quartz API的主要接口: * 1)Scheduler - 与调度器交互的主要API。 * 2)Job - 被调度器执行的实现了Job接口的组件。 * 3)JobDetail - 用于定义任务的实例。 * 4)Trigger - 定义了在schedule上执行一个给定的Job。 * 5)JobBuilder - 用于定义或构建JobDetail实例。 * 6)TriggerBuilder - 用于定义或构建Trigger实例。