1.0
xin
2025-04-15 e718afd02965c6a4018506acb1ae99baca0c5645
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package com.oying.modules.quartz.config;
 
import lombok.extern.slf4j.Slf4j;
import org.quartz.spi.TriggerFiredBundle;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.config.AutowireCapableBeanFactory;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Scope;
import org.springframework.lang.NonNull;
import org.springframework.scheduling.quartz.AdaptableJobFactory;
import org.springframework.stereotype.Component;
 
/**
 * 定时任务配置
 * @author Z
 * @date 2019-01-07
 */
@Slf4j
@Configuration
@Scope("singleton")
public class QuartzConfig {
 
    /**
     * 解决Job中注入Spring Bean为null的问题
     */
    @Component("quartzJobFactory")
    public static class QuartzJobFactory extends AdaptableJobFactory {
 
        private final AutowireCapableBeanFactory capableBeanFactory;
 
        @Autowired
        public QuartzJobFactory(AutowireCapableBeanFactory capableBeanFactory) {
            this.capableBeanFactory = capableBeanFactory;
        }
 
        @NonNull
        @Override
        protected Object createJobInstance(@NonNull TriggerFiredBundle bundle) throws Exception {
            try {
                // 调用父类的方法,把Job注入到spring中
                Object jobInstance = super.createJobInstance(bundle);
                capableBeanFactory.autowireBean(jobInstance);
                log.debug("Job instance created and autowired: {}", jobInstance.getClass().getName());
                return jobInstance;
            } catch (Exception e) {
                log.error("Error creating job instance for bundle: {}", bundle, e);
                throw e;
            }
        }
    }
}