我在尝试构建 GenericApplicationContext 时遇到了一些问题,所有用 @Autowired 注释的字段都是空的。以下是构建应用程序上下文的代码:
GenericApplicationContext context = new GenericApplicationContext(
new DefaultListableBeanFactory());
XmlBeanDefinitionReader lXmlReader = new XmlBeanDefinitionReader(
context);
lXmlReader.loadBeanDefinitions(new FileSystemResource( "/applicationContext.xml"));
我确定在 applicationContext.xml 中正确配置了注释配置和组件扫描,所以我需要更多处理来显式连接依赖关系吗?任何建议表示赞赏。