spring強制注入と引用実例解析


この文章は主にspringが強制的に注入して実例を引用して解析することを紹介しています。ここでは例示的なコードで紹介された非常に詳細で、皆さんの学習や仕事に対して一定の参考学習価値を持っています。必要な友達は以下のように参照してください。
前提:

public class DataProviderManagerImpl implements ApplicationContextAware
@Override
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
this.applicationContext = applicationContext;
}
強制注入:
//beanインスタンスがすべてのbean属性に設定されている場合にのみ実行できるようにすることができます。

if (provider instanceof InitializingBean) {
((InitializingBean) provider).afterPropertiesSet();
}
applicationContext.getAutowireCapableBeanFactory().autowireBean(provider);
強引な引用:--普通のGetBeanです。

InnerAggregator innerAggregator = applicationContext.getBean(H2Aggregator.class);
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。