Constructor injection vs Field injection(构造函数注入与字段注入)
问题描述
注入任何服务时,我有两种选择:
When injecting any services, I have two choices :
字段注入:
@Inject
private MyService myService;
或构造函数注入:
private MyService myService;
@Inject
public ClassWhereIWantToInject(MyService mySerivce){
this.myService = myService;
}
为什么构造函数注入优于字段注入?
推荐答案
我发现字段注入只有两个缺点.
I found only two disadvantages in the field injection.
在测试对象时很难注入模拟.(可以使用来自 Mockito 的
@InjectMocks
解决)
循环依赖.如果 bean A
依赖于 bean B
并且 bean B
需要 bean A
.如果你有构造函数注入很容易找到它.
Circle dependencies. If bean A
depends on bean B
and bean B
needs bean A
. If you have the constructor injection it easy to find it.
这篇关于构造函数注入与字段注入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:构造函数注入与字段注入


- 如何使用WebFilter实现授权头检查 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01