Quartz 2.0.2
thinktotings
每天进一步,踏上成功路……
展开
-
quartz 执行时间配置
CronTrigger TutorialIntroductioncron is a UNIX tool that has been around for a long time, so its scheduling capabilities are powerfuland proven. The CronTrigger class is based on the sch...原创 2011-09-26 10:23:15 · 187 阅读 · 0 评论 -
Lesson 7: TriggerListeners and c
Quartz Enterprise Job Scheduler TutorialLesson 7: TriggerListeners and JobListenersListeners are objects that you create to perform actions based on events occurring within the scheduler. As you...原创 2011-07-27 14:41:52 · 86 阅读 · 0 评论 -
Lesson 6: CronTrigger
Quartz Enterprise Job Scheduler TutorialLesson 6: CronTriggerCronTrigger is often more useful than SimpleTrigger, if you need a job-firing schedule that recurs based oncalendar-like notions, rat...原创 2011-07-27 14:28:53 · 125 阅读 · 0 评论 -
Lesson 5: SimpleTrigger
Quartz Enterprise Job Scheduler TutorialLesson 5: SimpleTriggerSimpleTrigger should meet your scheduling needs if you need to have a job execute exactly once ata specific moment in time, or ...原创 2011-07-27 14:22:26 · 124 阅读 · 0 评论 -
Lesson 4: More About Triggers
Quartz Enterprise Job Scheduler TutorialLesson 4: More About TriggersLike jobs, triggers are quite easy to work with, but do contain a variety of customizable options that youneed to be aware of...原创 2011-07-27 14:14:18 · 129 阅读 · 0 评论 -
Lesson 3: More About Jobs and Job Details
Quartz Enterprise Job Scheduler TutorialLesson 3: More About Jobs and Job DetailsAs you saw in Lesson 2, Jobs are rather easy to implement, having just a single 'execute' method in the interface. ...原创 2011-07-27 11:58:26 · 219 阅读 · 0 评论 -
Lesson 2: The Quartz API, and Introduction to Jobs And Triggers
Quartz Enterprise Job Scheduler TutorialLesson 2: The Quartz API, and Introduction to Jobs And TriggersThe Quartz APIThe key interfaces of the Quartz API are:Scheduler - the main API for i...原创 2011-07-27 11:34:48 · 111 阅读 · 0 评论 -
Lesson 1: Using Quartz
Quartz Enterprise Job Scheduler Tutorial Quartz Enterprise Job Scheduler TutorialLesson 1: Using QuartzBefore you can use the scheduler, it needs to be instantiated (who'd have guessed?). T...原创 2011-07-27 11:22:01 · 91 阅读 · 0 评论 -
Examples Overview
Examples OverviewWelcome to the documentation for the Quartz Example programs. As of version 1.5, Quartz ships with 13 out-of-the-box examples that demonstrate the various features of Quartz a...原创 2011-07-27 10:24:28 · 99 阅读 · 0 评论 -
CronTrigger Tutorial
http://www.quartz-scheduler.org/docs/tutorials/crontrigger.htmlCronTrigger TutorialIntroductioncron is a UNIX tool that has been around for a long time, so its scheduling capabilities a...原创 2011-07-27 10:04:05 · 79 阅读 · 0 评论 -
quartz-2.0.2-examples
Cron Triggers Expression 秒,分,时 1、每隔20秒执行一次。0/20 * * * * ? 2、每下一个两分钟的第15秒执行。15 0/2 * * * ? 3、8点到17点钟的,每隔两分钟执行一次。 0 0/2 8-17 * * ? 4、17点到23点,每隔3分钟执行一次。0 0/3 17-23 * * ...原创 2011-07-27 07:58:55 · 86 阅读 · 0 评论 -
1天有多少毫秒
1、 --1天有多少毫秒 1天=86400000 毫秒select 1000*60*60*24 from dual;原创 2011-07-28 14:43:25 · 3394 阅读 · 0 评论