Spring入门-----7依赖注入之set注入
Posted 我永远信仰
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring入门-----7依赖注入之set注入相关的知识,希望对你有一定的参考价值。
7、依赖注入
依赖注入有三种
7.1、构造器注入
7.2、Set 方式注入【重点】
- 依赖注入:set注入!
- 依赖:bean对象的创建依赖于容器!
- 注入:bean对象中的所有属性,由容器来注入!
主要是去理不同的类型用什么标签来进行注入,非常容易理解,只有一两个类型不太一样。
【环境搭建】
1.复杂类型
Address类
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 + '\\'' +
'}';
}
}
2.真实测试对象
Student类(注意不同的类型,会在下面第五点里面注释说明)
public class Student {
private String name;
private Address address;
private String[] book;
private List<String> hobbys;
private Map<String,String> card;
private Set<String> games;
private Properties info;
/* 省略全部的get和set,需要自己补上*/
}
3.beans.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="student" class="com.yong.pojo.Student">
<!--第一种,普通注入-->
<property name="name" value="四阿哥"/>
</bean>
</beans>
4.测试类
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.getName());
}
}
运行结果:成功
5.完善注入信息
beans.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="address" class="com.yong.pojo.Address">
<property name="address" value="小花朵街区"/>
</bean>
<bean id="student" class="com.yong.pojo.Student">
<!--1 普通注入-->
<property name="name" value="四阿哥"/>
<!--2 Bean注入-->
<property name="address" ref="address"/>
<!--3 数组注入-->
<property name="books">
<array>
<value>Java开发</value>
<value>android开发</value>
<value>Web开发</value>
<value>嵌入式开发</value>
</array>
</property>
<!--4 list-->
<property name="hobbys">
<list>
<value>打篮球</value>
<value>敲代码</value>
<value>踢足球</value>
</list>
</property>
<!--Map 用的是entry,不是value,这个和其他的有点区别-->
<property name="card">
<map>
<entry key="身份证" value="111111111111111"/>
<entry key="校园卡" value="23135465564"/>
</map>
</property>
<!--Set-->
<property name="games">
<set>
<value>和平精英</value>
<value>LOL</value>
<value>王者荣耀</value>
</set>
</property>
<!--null -->
<property name="wife">
<null/>
</property>
<!--Properties-->
<property name="info">
<props>
<prop key="学号">20210706</prop>
<prop key="性别">男</prop>
<prop key="username">123456</prop>
<prop key="password">000000</prop>
</props>
</property>
</bean>
</beans>
改成toString();
运行输出:
总结:不同的参数类型的注入的方式并不太一样,大部分都是由value来注入,只是用该改类型的标签多加了一层包裹起来。
7.3 、拓展方式注入
我们可以使用c命名空间和p命名空间进行注入
以上是关于Spring入门-----7依赖注入之set注入的主要内容,如果未能解决你的问题,请参考以下文章
Spring:IOC之DI(依赖注入)Set注入和构造器注入的区别和实现!