我找到了一些答案:https://stackoverflow.com/a/21218921/2754014关于依赖注入.没有像@ autowired,@ Inject或@Resource这样的注释.让我们假设这个示例TwoInjectionStyles bean没有任何XML配置(简单< context:component-scan base-package =“com.example”/>除外).
在没有指定注释的情况下注入是否正确?
最佳答案从Spring 4.3开始,构造函数注入不需要注释.public class MovIERecommender { private CustomerPreferenceDao customerPreferenceDao; private MovIECatalog movIECatalog; //@autowired - no longer necessary public MovIERecommender(CustomerPreferenceDao customerPreferenceDao) { this.customerPreferenceDao = customerPreferenceDao; } @autowired public setMovIECatalog(MovIECatalog movIECatalog) { this.movIECatalog = movIECatalog; }}
但你仍然需要@autowired进行二传手注射.我刚才用Spring Boot 1.5.7(使用Spring 4.3.11)检查过,当我删除@autowired时,没有注入bean. 总结
以上是内存溢出为你收集整理的java – 没有autowire注释的Spring注入全部内容,希望文章能够帮你解决java – 没有autowire注释的Spring注入所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)