views:

201

answers:

2

How to run multiple jobs with spring quartz and the jobs are feched from database.

Please provide any example code.

+1  A: 

Well you can start by reading the documentation here and here. If you then have a more specific question, then come back and ask it.

skaffman
Your link to Spring's reference documentation is your local on D:/apps/
Espen
@Espen: Bugger, I keep doing that... thanks :)
skaffman
+1  A: 

There are several parts to this question:

  1. How to run Quartz.
  2. How to connect to a database.
  3. How to create a schema to describe "jobs".
  4. How to create and execute a "job" from the schema.

Marry all these together and you'll answer your own question.

Computer science is about decomposition: breaking large problems into smaller ones that you can handle. I'd recommend taking that approach here.

duffymo