Package org.jtester.module.spring.strategy.injector

Source Code of org.jtester.module.spring.strategy.injector.SpringBeanInjectorByName

package org.jtester.module.spring.strategy.injector;

import static org.jtester.utility.AnnotationUtils.getFieldsAnnotatedWith;

import java.lang.annotation.Annotation;
import java.lang.reflect.Field;
import java.util.Set;

import org.jtester.annotations.SpringApplicationContext;
import org.jtester.annotations.SpringBeanByName;
import org.jtester.bytecode.reflector.helper.FieldHelper;
import org.jtester.exception.JTesterException;
import org.jtester.module.spring.JTesterBeanFactory;
import org.jtester.utility.StringHelper;

@SuppressWarnings({ "unchecked", "rawtypes" })
class SpringBeanInjectorByName extends SpringBeanInjector {
  /**
   * {@inheritDoc}<br>
   * <br>
   * 根据@SpringBeanByName注入spring bean<br>
   * <br>
   * Gets the spring bean with the given name. The given test instance, by
   * using {@link SpringApplicationContext}, determines the application
   * context in which to look for the bean.
   * <p/>
   * A JTesterException is thrown when the no bean could be found for the
   * given name.
   */
  public void injectBy(JTesterBeanFactory beanFactory, Object testedObject, Class<? extends Annotation> annotation) {
    Class testedClazz = testedObject.getClass();
    Set<Field> fields = getFieldsAnnotatedWith(testedClazz, SpringBeanByName.class);
    for (Field field : fields) {
      try {
        SpringBeanByName byName = field.getAnnotation(SpringBeanByName.class);
        String beanName = byName.value();
        if (StringHelper.isBlankOrNull(byName.value())) {
          beanName = field.getName();
        }
        Object bean = beanFactory.getBean(beanName);
        FieldHelper.setFieldValue(testedObject, field, bean);
      } catch (Throwable e) {
        String error = String.format("inject @SpringBeanByName field[%s] in class[%s] error.", field.getName(),
            testedClazz.getName());
        throw new JTesterException(error, e);
      }
    }
  }
}
TOP

Related Classes of org.jtester.module.spring.strategy.injector.SpringBeanInjectorByName

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.