- Cannot instantiate type SimpleTrigger
- Cannot instantiate type JobDetail
After searching for a solution I found many forum posts describing the same problem. The only responses given were to ensure all the appropriate JAR files were added to the project build path/class path. For me though this didn't solve the problem.
After some probing I realised the problem I was having which basically made the majority of the tutorials and examples on the internet correct in theory but syntactically wrong and the code they contained useless to me. The problem is that I was using the latest version of Quartz 2.0 and this updates has significantly changed the API from all quartz 1.x versions (e.g. quartz 1.8).
So if you are using (or updating to) Quartz 2.0 and you find you have these problems I have three tips for you
- Familiarise yourself with all of the changes and new features of Quartz (click here)
- Read and understand the source code available in the examples folder that comes with your quartz download
- Follow the official Quartz tutorial (click here) To learn how to use the new API
Hope this helps
Mayo