Inject Spring dependencies in Quartz Job - HowToDoInJava
By default, quartz does not recognize spring beans configured in applicationContext.xml or with @Bean annotation. If you try to @Autowired these beans in Quartz Job or QuartzJobBean, you will get NullPointerException. Inject Spring context to QuartzJobBean
howtodoinjava.com