
leap.spring.boot.SpringAutowireResolver Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package leap.spring.boot;
import leap.lang.Classes;
import leap.lang.Factory;
import leap.lang.Objects2;
import leap.lang.logging.Log;
import leap.lang.logging.LogFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.beans.factory.annotation.QualifierAnnotationAutowireCandidateResolver;
import org.springframework.beans.factory.config.BeanDefinitionHolder;
import org.springframework.beans.factory.config.DependencyDescriptor;
import org.springframework.beans.factory.support.AutowireCandidateResolver;
import org.springframework.context.annotation.ContextAnnotationAutowireCandidateResolver;
import javax.sql.DataSource;
import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
import java.util.Collection;
final class SpringAutowireResolver extends ContextAnnotationAutowireCandidateResolver implements AutowireCandidateResolver {
private static final Log log = LogFactory.get(SpringAutowireResolver.class);
private final AutowireCandidateResolver original;
private boolean starting;
private boolean started;
public SpringAutowireResolver(AutowireCandidateResolver original) {
this.original = original;
}
@Override
public boolean isAutowireCandidate(BeanDefinitionHolder bdHolder, DependencyDescriptor descriptor) {
return null != original ? original.isAutowireCandidate(bdHolder, descriptor) : false;
}
@Override
public Object getLazyResolutionProxyIfNecessary(DependencyDescriptor descriptor, String beanName) {
return null != original ? original.getLazyResolutionProxyIfNecessary(descriptor, beanName) : null;
}
//spring 5.0
public boolean isRequired(DependencyDescriptor descriptor) {
if(null != original && original instanceof QualifierAnnotationAutowireCandidateResolver) {
return ((QualifierAnnotationAutowireCandidateResolver) original).isRequired(descriptor);
}
return super.isRequired(descriptor);
}
//spring 5.0
public boolean hasQualifier(DependencyDescriptor descriptor) {
for (Annotation ann : descriptor.getAnnotations()) {
if (isQualifier(ann.annotationType())) {
return true;
}
}
return false;
}
@Override
public Object getSuggestedValue(DependencyDescriptor descriptor) {
Object bean = null != original ? original.getSuggestedValue(descriptor) : null;
if(null == bean) {
Class type = descriptor.getDependencyType();
if(!type.getName().startsWith(Global.SPRING_PACKAGE_PREFIX)) {
if(!started) {
if(starting) {
return bean;
}
starting = true;
Global.start();
starting = false;
started = true;
}
if(null != Global.factory()) {
Type genericType = null;
if (null != descriptor.getField()) {
genericType = descriptor.getField().getGenericType();
} else if (null != descriptor.getMethodParameter()) {
genericType = descriptor.getMethodParameter().getGenericParameterType();
}
try {
LeapBeanSupport.disable();
Qualifier qualifier = Classes.getAnnotation(descriptor.getAnnotations(), Qualifier.class);
if(null == qualifier) {
bean = Global.factory().resolveInjectValue(type, genericType, descriptor.getAnnotations());
}else {
if(Collection.class.isAssignableFrom(type) || type.isArray()) {
//collection injection with qualifier does not supported.
return null;
}
bean = Global.factory().resolveInjectValue(type, genericType, qualifier.value(), descriptor.getAnnotations());
}
if (null != bean && Objects2.isEmpty(bean)) {
bean = null;
}
if (null != bean) {
log.debug("Found leap managed bean of type '{}'", type);
} else {
log.debug("No leap managed bean of type '{}'", type);
}
} finally {
LeapBeanSupport.enable();
}
}
}
}
return bean;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy