Spring源碼 - @Autowired原理分析(AutowiredAnnotationBeanPostProcessor)

目錄

1、MergedBeanDefinitionPostProcessor#postProcessMergedBeanDefinition

2、#determineCandidateConstructors

3、InstantiationAwareBeanPostProcessor#postProcessProperties


    分析完CommonAnnotationBeanPostProcessor之後,再來看AutowiredAnnotationBeanPostProcessor的實現就簡單一些了。由於不用解析@PostConstruct、@PreDestroy註解,所以去除了父類InitDestroyAnnotationBeanPostProcessor的邏輯;BeanPostProcess的postProcessBeforeInitialization中也不用進行處理了,返回原對象。但是@Autowired註解不僅能修飾字段,還能修改構造函數,所以繼承了父類InstantiationAwareBeanPostProcessorAdapter。

    還是先看看其無參數中,添加的解析的類型(說明能解析@Autowired和@Value):

public AutowiredAnnotationBeanPostProcessor() {
    this.autowiredAnnotationTypes.add(Autowired.class);
    this.autowiredAnnotationTypes.add(Value.class);
    try {
        this.autowiredAnnotationTypes.add((Class<? extends Annotation>)
                ClassUtils.forName("javax.inject.Inject", AutowiredAnnotationBeanPostProcessor.class.getClassLoader()));
        logger.trace("JSR-330 'javax.inject.Inject' annotation found and supported for autowiring");
    }
    catch (ClassNotFoundException ex) {
        // JSR-330 API not available - simply skip.
    }
}

    再看看AutowiredAnnotationBeanPostProcessor的結構層級:

    後面就還是按照BeanPostProcess的調用過程進行分析:

 

1、MergedBeanDefinitionPostProcessor#postProcessMergedBeanDefinition

    同樣的該接口的回調時機爲:SpringIoc源碼(十七)- BeanFactory(六)- getBean(doCreateBean總覽)#3、MergedBeanDefinitionPostProcessor回調,在對BeanDefinition進行merge之後,允許修改其值。由於CommonAnnotationBeanPostProcessor中需要處理父類的註解,二而當前只需要處理本類中的註解,如下:

@Override
public void postProcessMergedBeanDefinition(RootBeanDefinition beanDefinition,
    Class<?> beanType, String beanName) {

    InjectionMetadata metadata = findAutowiringMetadata(beanName, beanType, null);
    metadata.checkConfigMembers(beanDefinition);
}

    對於InjectionMetadata的checkConfigMembers可以參見上一篇博客,那麼主要的是怎麼將標記有@Autowired註解的信息加載爲該對象,findAutowiringMetadata方法入下:

private InjectionMetadata findAutowiringMetadata(String beanName, Class<?> clazz, @Nullable PropertyValues pvs) {
    // Fall back to class name as cache key, for backwards compatibility with custom callers.
    String cacheKey = (StringUtils.hasLength(beanName) ? beanName : clazz.getName());
    // Quick check on the concurrent map first, with minimal locking.
    InjectionMetadata metadata = this.injectionMetadataCache.get(cacheKey);
    if (InjectionMetadata.needsRefresh(metadata, clazz)) {
        synchronized (this.injectionMetadataCache) {
            metadata = this.injectionMetadataCache.get(cacheKey);
            if (InjectionMetadata.needsRefresh(metadata, clazz)) {
                if (metadata != null) {
                    metadata.clear(pvs);
                }
                metadata = buildAutowiringMetadata(clazz);
                this.injectionMetadataCache.put(cacheKey, metadata);
            }
        }
    }
    return metadata;
}

     大體結構如@Resource註解,主要在buildAutowiringMetadata中:

private InjectionMetadata buildAutowiringMetadata(final Class<?> clazz) {
    if (!AnnotationUtils.isCandidateClass(clazz, this.autowiredAnnotationTypes)) {
        return InjectionMetadata.EMPTY;
    }

    List<InjectionMetadata.InjectedElement> elements = new ArrayList<>();
    Class<?> targetClass = clazz;

    do {
        final List<InjectionMetadata.InjectedElement> currElements = new ArrayList<>();

        ReflectionUtils.doWithLocalFields(targetClass, field -> {
            MergedAnnotation<?> ann = findAutowiredAnnotation(field);
            if (ann != null) {
                if (Modifier.isStatic(field.getModifiers())) {
                    if (logger.isInfoEnabled()) {
                        logger.info("Autowired annotation is not supported on static fields: " + field);
                    }
                    return;
                }
                boolean required = determineRequiredStatus(ann);
                currElements.add(new AutowiredFieldElement(field, required));
            }
        });

        ReflectionUtils.doWithLocalMethods(targetClass, method -> {
            Method bridgedMethod = BridgeMethodResolver.findBridgedMethod(method);
            if (!BridgeMethodResolver.isVisibilityBridgeMethodPair(method, bridgedMethod)) {
                return;
            }
            MergedAnnotation<?> ann = findAutowiredAnnotation(bridgedMethod);
            if (ann != null && method.equals(ClassUtils.getMostSpecificMethod(method, clazz))) {
                if (Modifier.isStatic(method.getModifiers())) {
                    return;
                }
                if (method.getParameterCount() == 0) {
                }
                boolean required = determineRequiredStatus(ann);
                PropertyDescriptor pd = BeanUtils.findPropertyForMethod(bridgedMethod, clazz);
                currElements.add(new AutowiredMethodElement(method, required, pd));
            }
        });

        elements.addAll(0, currElements);
        targetClass = targetClass.getSuperclass();
    }
    while (targetClass != null && targetClass != Object.class);

    return InjectionMetadata.forElements(elements, clazz);
}

    根據當前的類,遞歸父類一直到Object類,判斷方法即字段上是否有@Autowired註解,如果有則進行解析並往容器中添加AutowiredFieldElement或者AutowiredMethodElement對象。其中主要的方法爲findAutowiredAnnotation

@Nullable
private MergedAnnotation<?> findAutowiredAnnotation(AccessibleObject ao) {
    MergedAnnotations annotations = MergedAnnotations.from(ao);
    for (Class<? extends Annotation> type : this.autowiredAnnotationTypes) {
        MergedAnnotation<?> annotation = annotations.get(type);
        if (annotation.isPresent()) {
            return annotation;
        }
    }
    return null;
}

    方法名稱雖然看上去值解析@Autowired註解,但是構造中還加入了@Value。所以這裏也進行了解析。遞歸完成後則將所有本類和父類中,@Autowired和@Value修飾的字段和方法都以AutowiredFieldElement或者AutowiredMethodElement的類型加入容器中。

 

2、#determineCandidateConstructors

    由於@Autowired可以修改構造函數,那麼在getBean的創建Bean,通過構造函數反射創建對象時。determineConstructorsFromBeanPostProcessors允許調用SmartInstantiationAwareBeanPostProcessor的determineCandidateConstructors方法。而當前調用了適配器模式模式InstantiationAwareBeanPostProcessorAdapterdetermineCandidateConstructors方法。調用時機可以參見SpringIoc源碼(十八)- BeanFactory(七)- getBean(doCreateBean - createBeanInstance實例創建)

@Override
public Constructor<?>[] determineCandidateConstructors(Class<?> beanClass, final String beanName)
        throws BeanCreationException {

    // Let's check for lookup methods here..
    if (!this.lookupMethodsChecked.contains(beanName)) {
        try {
            ReflectionUtils.doWithMethods(beanClass, new ReflectionUtils.MethodCallback() {
                @Override
                public void doWith(Method method) throws IllegalArgumentException, IllegalAccessException {
                    Lookup lookup = method.getAnnotation(Lookup.class);
                    if (lookup != null) {
                        LookupOverride override = new LookupOverride(method, lookup.value());
                        try {
                            RootBeanDefinition mbd = (RootBeanDefinition) beanFactory.getMergedBeanDefinition(beanName);
                            mbd.getMethodOverrides().addOverride(override);
                        }
                        catch (NoSuchBeanDefinitionException ex) {
                            throw new BeanCreationException(beanName, "省略");
                        }
                    }
                }
            });
        }
        catch (IllegalStateException ex) {
            throw new BeanCreationException(beanName, "Lookup method resolution failed", ex);
        }
        catch (NoClassDefFoundError err) {
            throw new BeanCreationException(beanName, "省略", err);
        }
        this.lookupMethodsChecked.add(beanName);
    }

    // Quick check on the concurrent map first, with minimal locking.
    Constructor<?>[] candidateConstructors = this.candidateConstructorsCache.get(beanClass);
    if (candidateConstructors == null) {
        // Fully synchronized resolution now...
        synchronized (this.candidateConstructorsCache) {
            candidateConstructors = this.candidateConstructorsCache.get(beanClass);
            if (candidateConstructors == null) {
                Constructor<?>[] rawCandidates;
                try {
                    rawCandidates = beanClass.getDeclaredConstructors();
                }
                catch (Throwable ex) {
                    throw new BeanCreationException(beanName, "省略", ex);
                }
                List<Constructor<?>> candidates = new ArrayList<Constructor<?>>(rawCandidates.length);
                Constructor<?> requiredConstructor = null;
                Constructor<?> defaultConstructor = null;
                for (Constructor<?> candidate : rawCandidates) {
                    AnnotationAttributes ann = findAutowiredAnnotation(candidate);
                    if (ann == null) {
                        Class<?> userClass = ClassUtils.getUserClass(beanClass);
                        if (userClass != beanClass) {
                            try {
                                Constructor<?> superCtor =
                                        userClass.getDeclaredConstructor(candidate.getParameterTypes());
                                ann = findAutowiredAnnotation(superCtor);
                            }
                            catch (NoSuchMethodException ex) {
                                // Simply proceed, no equivalent superclass constructor found...
                            }
                        }
                    }
                    if (ann != null) {
                        if (requiredConstructor != null) {
                            throw new BeanCreationException(beanName,"省略");
                        }
                        boolean required = determineRequiredStatus(ann);
                        if (required) {
                            if (!candidates.isEmpty()) {
                                throw new BeanCreationException(beanName, "省略");
                            }
                            requiredConstructor = candidate;
                        }
                        candidates.add(candidate);
                    }
                    else if (candidate.getParameterTypes().length == 0) {
                        defaultConstructor = candidate;
                    }
                }
                if (!candidates.isEmpty()) {
                    // Add default constructor to list of optional constructors, as fallback.
                    if (requiredConstructor == null) {
                        if (defaultConstructor != null) {
                            candidates.add(defaultConstructor);
                        }
                        else if (candidates.size() == 1 && logger.isWarnEnabled()) {
                            // 省略日誌
                        }
                    }
                    candidateConstructors = candidates.toArray(new Constructor<?>[candidates.size()]);
                }
                else if (rawCandidates.length == 1 && rawCandidates[0].getParameterTypes().length > 0) {
                    candidateConstructors = new Constructor<?>[] {rawCandidates[0]};
                }
                else {
                    candidateConstructors = new Constructor<?>[0];
                }
                this.candidateConstructorsCache.put(beanClass, candidateConstructors);
            }
        }
    }
    return (candidateConstructors.length > 0 ? candidateConstructors : null);
}

    

3、InstantiationAwareBeanPostProcessor#postProcessProperties

    調用時機爲:SpringIoc源碼(十九)- BeanFactory(八)- getBean(doCreateBean - populateBean屬性填充)#3、InstantiationAwareBeanPostProcessor#postProcessPropertyValues屬性填充

@Override
public PropertyValues postProcessProperties(PropertyValues pvs, Object bean, String beanName) {
    InjectionMetadata metadata = findAutowiringMetadata(beanName, bean.getClass(), pvs);
    // 省略異常處理代碼
    metadata.inject(bean, beanName, pvs);
    return pvs;
}

    findAutowiringMetadata方法的過程上面分析過了(並且第一次處理完就有數據了),調用inject方法可以查看上一篇博客。這樣整個@Autowired、@Value註解的解析過程就清楚了。

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

發佈了207 篇原創文章 · 獲贊 78 · 訪問量 23萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章