2

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

STW
  • 44,917
  • 17
  • 105
  • 161
Aravindkumar
  • 175
  • 2
  • 2
  • 11

2 Answers2

1

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
  • 76,436
  • 32
  • 213
  • 198
1

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
  • 54,009
  • 15
  • 113
  • 152