GenericApplicationContext を構築しようとしたときに問題が発生しました。@Autowired で注釈が付けられたすべてのフィールドが null です。以下は、アプリケーション コンテキストを構築するためのコードです。
GenericApplicationContext context = new GenericApplicationContext(
new DefaultListableBeanFactory());
XmlBeanDefinitionReader lXmlReader = new XmlBeanDefinitionReader(
context);
lXmlReader.loadBeanDefinitions(new FileSystemResource( "/applicationContext.xml"));
私は、注釈構成とコンポーネントスキャンがapplicationContext.xmlで適切に構成されていると確信しています。依存関係を明示的に配線するために、さらに処理が必要ですか? 任意の提案をいただければ幸いです。