在我的项目中,我在集成层中看到了这样的 spring 依赖注入语法:
applicationContext.getBean("beanName");
其中ClasspathXMLApplicationContext 的applicationContext 实例和“ beanName
”在spring xml 中定义。如果我想用 Annotation 注入它,我应该使用哪一个?@Inject,@Autowired,@Resource.
似乎我可以使用其中任何一种,但我似乎无法决定使用哪一种。这是 SPring 集成层,而不是 MVC 层,但我认为这没有任何区别。