极简SpringBoot指南-Chapter02-Spring依赖注入的方式
仓库地址
Chapter02-Spring依赖注入的方式
我们在Chapter00—2.2节依赖注入已经介绍了Spring的对象依赖注入的方式,在那个例子中,我们使用了字段的setter方法对字段进行了注入。在本章中,我们将介绍对象依赖注入的另外的方式,并提到一些关于依赖注入的注意点。
大致来说,依赖注入分为三种:
- 属性setter方法注入
- 字段注入
- 构造函数注入
为了 接下来的示例做准备,我们按照如下的代码结构顺序编写:
- 编写类Pen,表示一个笔类Pen
- 编写类Box,表示一个用于装Pen的盒子类Box
- 编写相关配置注入的代码
- 使用Spring验证代码注入
OK,首先编写类Pen做准备:
@Component
public class Pen {
public Pen() {
System.out.println("Pen 无参构造函数");
}
}
对于该类,我们使用@Component
将其标记为Bean(PS:这里为了本章的主题,我们就不使用上一章的配置类和XML来声明了)。
一 属性setter方法注入
编写类BoxA类:
@Component
public class BoxA {
private Pen pen;
// 我们在属性setter方法上,使用@Autowire注解
// 目的是希望Spring容器框架能够让帮助我们注入该属性
@Autowired
public void setPen(Pen pen) {
this.pen = pen;
System.out.println("setter函数注入:" + pen);
}
public void printPen() {
System.out.println(pen == null ? "BoxA没有Pen" : "BoxA有Pen:" + pen);
}
}
对于该BoxA类,我们同样使用@Component
标记为了Bean。此外,我们为其添加了Pen类型的字段pen,并编写了setter方法。在该方法上,我们添加了@Autowired
注解,表明我们希望类型为Pen的属性pen能够由Spring为我们注入进来。
那么现在有一个问题,这个Pen的实例,是怎么来的呢?不难思考出来,就是我们一开头准备的@Component Pen
。
接下来编写验证代码:
@SpringBootApplication
public class Chapter02App {
public static void main(String[] args) {
ConfigurableApplicationContext context =
SpringApplication.run(Chapter02App.class, args);
// 我们只获取了BoxA的实例
Object boxA = context.getBean("boxA");
if (boxA instanceof BoxA) {
System.out.println("BoxA实例:" + box);
((BoxA) boxA).printPen(); // 却能够正确打印Pen实例
}
}
}
二 构造函数注入
编写BoxB类:
@Component
public class BoxB {
private Pen pen;
// 在构造函数上添加@Autowired注解,并且构造函数入参有Pen
@Autowired
public BoxB(Pen pen) {
this.pen = pen;
System.out.println("BoxB 有参构造函数,注入Pen实例:" + pen);
}
public void printPen() {
System.out.println(pen == null ? "BoxB没有Pen" : "BoxB有Pen:" + pen);
}
}
对于该类,我们同样拥有Pen类型字段pen,但和setter方法注入不同的是,我们没有编写setter方法,而是显式编写了BoxB的构造函数,并且构造函数的入参就是Pen类的实例,然后在该构造函数上也同样添加了注解@Autowired
。其意图其实和setter方法注入相同,都是希望Spring框架能够帮我们进行依赖注入。
对于验证的代码,我们只需要稍微修改以下:
@SpringBootApplication
public class Chapter02App {
public static void main(String[] args) {
ConfigurableApplicationContext context =
SpringApplication.run(Chapter02App.class, args);
// 我们只获取了BoxB的实例
Object boxB = context.getBean("boxB");
if (boxB instanceof BoxB) {
System.out.println("BoxB实例:" + boxB);
((BoxB) boxB).printPen(); // BoxB 能够正确打印Pen实例
}
}
}
三 字段注入
对于字段注入来说,就更简单了,BoxC:
@Component
public class BoxC {
@Autowired
private Pen pen;
public void printPen() {
System.out.println(pen == null ? "BoxC没有Pen" : "BoxC有Pen:" + pen);
}
}
没有构造函数,没有setter方法,只有无尽的怒火字段,然后字段上添加@Autowired
注解。验证代码同上,不再赘述。
字段注入比起另外的两种两种方式简单的多,可能绝大多数的项目都会用这个字段,但本人将字段注入放在了第三个来讲,还是希望说一下字段注入的问题点。使用IDEA同学可能已经看到了,IDEA会提示:
Field injection is not recommended
不推荐使用字段注入
字段注入这么方便,为什么说不推荐呢?主要有以下几点:
- 基于字段的依赖注入在声明为final的字段上不起作用。
- 会与SpringIOC容器框架紧密耦合。因为private字段的原因,想要编写单元测试,就必须依赖Spring测试框架,否则你无法手动注入(除了使用反射,但是那样不久太麻烦了吗?)。
字段注入的问题还有其他的问题,可以自行搜索:Spring不推荐字段注入。
当然,如果一个项目自始自终都是在Spring框架中运行,也没有所谓的需要脱离Spring框架的地方,字段注入也并非不可。
扩展阅读:依赖注入的注意点
我们在上文已经提到了三种依赖注入的方式。那么读者有没有想过依赖注入需要注意什么呢?
编写类TestA、TestB:
// TestA类
@Component
public class TestA {
// 字段注入
@Autowired
private TestB testB;
public void printTestB() {
System.out.println("printTestB: " + this.testB);
}
}
// TestB类
@Component
public class TestB {
@Autowired
private TestA testA;
public void printTestA() {
System.out.println("printTestA: " + this.testA);
}
}
注意TestA类与TestB类相互以字段注入的方式注入到了另一个类中。接着我们编写测试代码:
@SpringBootApplication
public class Chapter01CycleTestApp {
public static void main(String[] args) {
ConfigurableApplicationContext context =
SpringApplication.run(Chapter01CycleTestApp.class, args);
TestA testA = context.getBean(TestA.class);
TestB testB = context.getBean(TestB.class);
System.out.println("从容器中获取的TestA实例:" + testA);
testA.printTestB();
System.out.println("从容器中获取的TestB实例:" + testB);
testB.printTestA();
}
}
那么,测试代码能够正常运行呢?思考一下,我们似乎陷入了循环依赖的场景了:
Spring容器创建TestA实例 -> 发现需要注入TestB实例 -> 创建TestB实例 -> 发现需要注入实例TestA -> 创建TestA实例 -> ...
似乎陷入了一直循环的情景。可是实际运行的时候,却正确输出了:
...
从容器中获取的TestA实例:TestA@4248ed58
printTestB: TestB@712ca57b
从容器中获取的TestB实例:TestB@712ca57b
printTestA: TestA@4248ed58
PS: 为了简洁的显示,我删去了包名
为什么会这样呢?实际上,Spring在初始化Bean的时候,并不是傻乎乎的按照上述的逻辑进行的,而是按照如下的大致流程:
- 准备创建TestA实例
- 发现TestA依赖TestB
- 查找TestB实例未果
- 先继续创建TestA实例,但是内部会标记该类实际还未注入依赖
- 准备创建TestB实例
- 发现TestB实例依赖TestA实例
- 查找TestA实例成功(只不过目前还没注入依赖而已),注入
- 扫描所有还未完全完成初始化的Bean,发现TestA还未注入依赖TestB
- 再次检查发现TestB已经有了,将其注入到TestA中
当然,这里只是简单的梳理一个流程,在Spring内部是很复杂的。
那么现在再来思考另外一个相互依赖注入的情况:构造函数注入。
// TestA 构造函数注入
@Component
public class TestA {
// 字段注入
// @Autowired
private TestB testB;
@Autowired
public TestA(TestB testB) {
this.testB = testB;
}
public void printTestB() {
System.out.println("printTestB: " + this.testB);
}
}
// TestB构造函数注入
@Component
public class TestB {
// @Autowired
private TestA testA;
// 构造函数注入
@Autowired
public TestB(TestA testA) {
this.testA = testA;
}
public void printTestA() {
System.out.println("printTestA: " + this.testA);
}
}
现在我们通过构造函数注入,执行测试代码看看会发生什么:
The dependencies of some of the beans in the application context form a cycle:
┌─────┐
| testA defined in file [xxx\chapter02\cycle\TestA.class]
↑ ↓
| testB defined in file [xxx\chapter02\cycle\TestB.class]
└─────┘
”当前应用程序中某些beans出现了循环依赖“。至于原因,请搜索关键词:Spring构造函数注入与setter注入
本章小结
在本章中,我们了解了Spring依赖注入的三种方式,并提到了循环依赖在不同注入方式下的区别。
至此,关于学习SpringBoot前的需要有的知识我们算是完成了一个简单的介绍的,接下来的文章将会基于SpringBoot框架,构建我们的Web服务。
极简SpringBoot指南-Chapter02-Spring依赖注入的方式的更多相关文章
- Spring依赖注入的方式、类型、Bean的作用域、自动注入、在Spring配置文件中引入属性文件
1.Spring依赖注入的方式 通过set方法完成依赖注入 通过构造方法完成依赖注入 2.依赖注入的类型 基本数据类型和字符串 使用value属性 如果是指向另一个对象的引入 使用ref属性 User ...
- Spring 依赖注入的方式
Spring 支持3中依赖注入的方式 1.属性注入 通过setter 方法注入Bean的属性或依赖的对象. <bean id = " " class = " &q ...
- 极简SpringBoot指南-Chapter01-如何用Spring框架声明Bean
仓库地址 w4ngzhen/springboot-simple-guide: This is a project that guides SpringBoot users to get started ...
- 极简SpringBoot指南-Chapter00-学习SpringBoot前的基本知识
仓库地址 w4ngzhen/springboot-simple-guide: This is a project that guides SpringBoot users to get started ...
- 极简SpringBoot指南-Chapter03-基于SpringBoot的Web服务
仓库地址 w4ngzhen/springboot-simple-guide: This is a project that guides SpringBoot users to get started ...
- spring依赖注入的方式(一)
为了方便类的管理,spring提供了依赖注入的思想:类的实例化不由程序员控制,而是交给sprig容器进行管理. spring提供了多种类型的注入方式---注解.xml注入: 1 注解注入 有两种:@ ...
- 极简SpringBoot指南-Chapter05-SpringBoot中的AOP面向切面编程简介
仓库地址 w4ngzhen/springboot-simple-guide: This is a project that guides SpringBoot users to get started ...
- 极简SpringBoot指南-Chapter04-基于SpringBoot的书籍管理Web服务
仓库地址 w4ngzhen/springboot-simple-guide: This is a project that guides SpringBoot users to get started ...
- Spring依赖注入:@Autowired,@Resource和@Inject区别与实现原理
一.spring依赖注入使用方式 @Autowired是spring框架提供的实现依赖注入的注解,主要支持在set方法,field,构造函数中完成bean注入,注入方式为通过类型查找bean,即byT ...
随机推荐
- 微信小程序的button按钮设置宽度无效
亲,你是不是也遇到了微信小程序的button按钮设置宽度无效.让我来告诉你怎么弄 方法1. 样式中加入!important,即:width: 100% !important; wxss代码示例 1 2 ...
- Ubuntu18.04下安装、测试tensorflow/models Tensorflow Object Detection API 笔记
参考:https://www.jianshu.com/p/1ed2d9ce6a88 安装 安装conda+tensorflow库 下载protoc linux x64版,https://github. ...
- 手机端rem简单配置相关
手机端rem简单配置相关 1 <!DOCTYPE html> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 ...
- linux centos7 定时执行服务监控脚本
2021-08-25 1. 需求 在服务挂掉之后我们要怎么做才能保证服务在短时间内开启?可以编写脚本监控服务的状态,在服务挂掉后及时将其开启,并定时执行该脚本. 2. 脚本编写 思路:平常我们可以通过 ...
- elsa-core:4.ASP.NET Core Server with Elsa Dashboard
在本快速入门中,我们将了解一个最小的 ASP.NET Core 应用程序,该应用程序承载 Elsa Dashboard 组件并将其连接到 Elsa Server. ElsaDashboard + Do ...
- vue 路由视图,router-view嵌套跳转
实现功能:制作一个登录页面,跳转到首页,首页包含菜单栏.顶部导航栏.主体,标准的后台网页格式.菜单栏点击不同菜单控制主体展示不同的组件(不同的页面). 配置router-view嵌套跳转需要准备两个主 ...
- 经典多级时间轮定时器(C语言版)
经典多级时间轮定时器(C语言版) 文章目录 经典多级时间轮定时器(C语言版) 1. 序言 2. 多级时间轮实现框架 2.1 多级时间轮对象 2.2 时间轮对象 2.3 定时任务对象 2.4 双向链表 ...
- docker&flask快速构建服务接口(二)
系列其他内容 docker快速创建轻量级的可移植的容器✓ docker&flask快速构建服务接口✓ docker&uwsgi高性能WSGI服务器生产部署必备 docker&g ...
- IIS托管Asp.net Core及Abp VNext
默认方式安装IIS后,从官方网站下载IIS模块 https://dotnet.microsoft.com/download/dotnet-core/3.1 2个都需要安装 安装后,新建网站指向发布的磁 ...
- Vue设置全局js/css样式
''' 配置全局js mian.js: import settings from '@/assets/js/settings' Vue.prototype.$settings = settings; ...