Flutter开发App的未来及其在各行业的应用潜力分析
559
2022-12-04
Spring使用Setter完成依赖注入方式
目录对依赖注入的理解使用Setter完成不同类型属性的注入整体配置文件Spring解决setter方式的循环依赖的原理
对依赖注入的理解
依赖:实体间的所有依赖由容器创建
注入:容器负责完成实体间依赖互相注入的任务
使用Setter完成不同类型属性的注入
实体类Student
package indi.stitch.pojo;
import java.util.*;
public class Student {
private String name;
private Address address;
private String[] books;
private List
private Set
private Map
private Properties info;
private String wife;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Address getAddress() {
return address;
}
public void setAddress(Address address) {
this.address = address;
}
public String[] getBooks() {
return books;
}
public void setBooks(String[] books) {
this.books = books;
}
public List
return hobbys;
}
public void setHobbys(List
this.hobbys = hobbys;
}
public Set
return games;
}
public void setGames(Set
this.games = games;
}
public Map
return card;
}
public void setCard(Map
this.card = card;
}
public String getWife() {
return wife;
}
public void setWife(String wife) {
this.wife = wife;
}
public Properties getInfo() {
return info;
}
public void setInfo(Properties info) {
this.info = info;
}
@Override
public String toString() {
return "Student{" +
"name='" +http:// name + '\'' + "\n" +
", address=" + address.toString() + "\n" +
", books=" + Arrays.toString(books) + "\n" +
", hobbys=" + hobbys + "\n" +
", games=" + games + "\n" +
", card=" + card + "\n" +
", info=" + info + "\n" +
", wife='" + wife + '\'' +
'}';
}
}
实体类引用的复杂类型Address
package indi.stitch.pojo;
public class Address {
private String address;
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
@Override
public String toString() {
return "Address{" +
"address='" + address + '\'' +
'}';
}
}
String字符串类型注入
复杂VO类型注入
配置文件中增加复杂类型bean(Address)的依赖配置
实体类Student的bean属性依赖对其进行引用
数组类型注入
List集合类型注入
Set集合类型注入
Map键值对类型注入
Properties类型注入
null类型注入
整体配置文件
xmlns:xsi="http://w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://springframework.org/schema/beans http://springframework.org/schema/beans/spring-beans.xsd"> xbbWyeSbq
xmlns:xsi="http://w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://springframework.org/schema/beans http://springframework.org/schema/beans/spring-beans.xsd">
xbbWyeSbq
测试类
import indi.stitch.pojo.Student;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class MyTest {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
Student student = (Student) context.getBean("student");
System.out.println(student.toString());
}
}
输出结果:
Spring解决setter方式的循环依赖的原理
1.通过构造函数创建A对象 (A对象是半成品,还没有注入属性和调用init方法)
2.将半成品A对象封装成工厂对象存入三级缓存
3.A对象需要注入B对象,发现缓存里还没有B对象,开始创建B对象
4.通过构造函数创建B对象(B对象是半成品,还没有注入属性和调用init方法)同样在三级缓存中创建B工厂对象
5.B对象需要注入A对象;从三级缓存中获取A工厂对象,使用工厂对象获取半成品A对象同时放入
二级缓存中,提前曝光A对象,同时删除A工厂对象
6.B对象继续注入其它属性和初始化,之后将完成品B对象放入完成品缓存一级缓存,同时删除B工厂对象
7.A对象获取单例B的引用完成属性注入
8.B对象继续注入其它属性和初始化,之后将完成品A对象放入完成品缓存一级缓存同时删除二级缓存中的A
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~