We know Spring has support for integration with the Quartz framework. But as of now Spring supports only static XML declarative approach.
As part of my pet project requirements I got to schedule the Jobs dynamically and I thought of the following 2 options:
1. Using Annotations for providing Job Metadata
2. Loading the Job Metadata from Database
For now I thought of going ahead with the Annotation based approach and I want to integrate it with Spring as well. Here is how I did it.
Read the rest of the article at the following URL:
Java Code Geeks: Spring & Quartz Integration with Custom Annotation