摘要:
initializeBean protected Object initializeBean(String beanName, Object bean, @Nullable RootBeanDefinition mbd) { if (System.getSecurityManager() != nu 阅读全文
摘要:
applyPropertyValues protected void applyPropertyValues(String beanName, BeanDefinition mbd, BeanWrapper bw, PropertyValues pvs) { if (pvs.isEmpty()) { 阅读全文
摘要:
autowireByType protected void autowireByType( String beanName, AbstractBeanDefinition mbd, BeanWrapper bw, MutablePropertyValues pvs) { TypeConverter 阅读全文
摘要:
autowireByName protected void autowireByName( String beanName, AbstractBeanDefinition mbd, BeanWrapper bw, MutablePropertyValues pvs) { String[] prope 阅读全文
摘要:
一、bean属性自动装配模式 AutowireCapableBeanFactory /** * 没有自动装配 */ int AUTOWIRE_NO = 0; /** * 按照名字自动装配 */ int AUTOWIRE_BY_NAME = 1; /** * 按照类型自动装配 */ int AUTOW 阅读全文