Spring: Spring依赖注入有哪几种方式?

1.属性注入

通过属性注入,比如用@Autowired、@Resource这些注解

@Autowire 
private ExampleService exampleServiceImpl;
  1. 对象的外部可见性:也就是脱离了Spring容器那么这个对象就不会被注入进去。
  2. 循环依赖:字段注入不会被检测是否出现依赖循环。比如A类中注入B类,B类中又注入了A类。
  3. 无法设置注入对象为final:因为final的成员变量必须在实例化时同时赋值。

2.setter方法注入

通过set方法注入,很少使用

private ExampleService exampleServiceImpl;

@Autowire
public setExampleServiceImpl (ExampleService exampleServiceImpl){
	this.exampleServiceImpl = exampleServiceImpl;
}
  1. 利用set来注入保证不依赖Spring容器。
  2. 每个set单独注入某个对象,便于控制,并且可以实现选择性注入。
  3. 可以检测循环依赖。

3.构造器注入

通过构造方法注入依赖

private ExampleService exampleServiceImpl;

@Autowire
public ExampleController (ExampleService exampleServiceImpl){
	this.exampleServiceImpl = exampleServiceImpl;
}
  1. 当需要注入的对象很多时,构造器参数列表将会很长; 不够灵活。
  2. 对象初始化完成后便可获得可使用的对象。
  3. 可以检测循环依赖。

你可能感兴趣的:(spring知识集合,spring,java,后端)