Is there a way to configure Quartz scheduling (Spring.Scheduling.Quartz) in Spring.Net using code config rather than xml files?
I want to completely avoid using config files when setting up Quartz jobs with Spring.Net.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Here’s a sample that uses both programmatic and XML based job scheduling glued together with CodeConfig.
Key points here are to have singleton for scheduler factory and the actual scheduler so they will be available from Spring context.