At work for a specific case we are using:
context.getAutowireCapableBeanFactory().autowireBeanProperties(
serializer, AutowireCapableBeanFactory.AUTOWIRE_BY_NAME, false
);
Today i had to autowire a value on my serializer bean which is provided by a FactoryBean.
My first try was just to use the simple factorybean id but it didn't work.
After that i tried many solutions i read here, using @Resource, @Autowired, @Qualifier etc...
Finally after looking how the bean injection was working, i found out that Spring never inject "simple properties"
/**
* Return an array of non-simple bean properties that are unsatisfied.
* These are probably unsatisfied references to other beans in the
* factory. Does not include simple properties like primitives or Strings.
* @param mbd the merged bean definition the bean was created with
* @param bw the BeanWrapper the bean was created with
* @return an array of bean property names
* @see org.springframework.beans.BeanUtils#isSimpleProperty
*/
protected String[] unsatisfiedNonSimpleProperties(AbstractBeanDefinition mbd, BeanWrapper bw) {
Set<String> result = new TreeSet<String>();
PropertyValues pvs = mbd.getPropertyValues();
PropertyDescriptor[] pds = bw.getPropertyDescriptors();
for (PropertyDescriptor pd : pds) {
if (pd.getWriteMethod() != null && !isExcludedFromDependencyCheck(pd) && !pvs.contains(pd.getName()) &&
!BeanUtils.isSimpleProperty(pd.getPropertyType())) {
result.add(pd.getName());
}
}
return StringUtils.toStringArray(result);
}
I also found in the Spring documentation:
Please also note that it is not currently possible to autowire so-called simple properties such as primitives, Strings, and Classes (and arrays of such simple properties). (This is by-design and should be considered a feature.)
Finally i know why my factory bean can't inject in my property: the bean to inject is an Enum which is a "simple property" (according to the code)
I just wonder why, by design, it is forbidden to autowire simple properties, particularly in the case of a simple property injected by a FactoryBean.
Also, i see how autowiring a String by Type could be a problem, but autowiring it by name, what's the matter?