views:

209

answers:

2

Hi all,

I have downloaded quartz scheduler.I wrote a program for generating random numbers for every 2 mins.I want to configure this program with quartz scheduler.I searched through the net but i am unclear with this.could anyone tel the steps to configure quartz with my program and how to use it.I want to run this in netbeans ide.All your views are appreciated.Thanks

+1  A: 

There's a fairly short outline at IBM developerWorks.

Example 2 "Simple Triggers" would be a good starting point for your regularly repeating job.

martin clayton
+1  A: 

One option is to use Quartz in conjunction with Spring (documentation here). This allows you to define your Quartz jobs in Spring config (i.e. XML) rather than hard-coding them into your project.

Adamski