Spring学习2:依赖注入(DI)

Posted Z|Star

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring学习2:依赖注入(DI)相关的知识,希望对你有一定的参考价值。

  • 依赖注入(Dependency Injection,DI)。
  • 依赖 : 指Bean对象的创建依赖于容器 . Bean对象的依赖资源。
  • 注入 : 指Bean对象所依赖的资源 , 由容器来设置和装配 。

set注入

常量注入

<bean id="student" class="pojo.Student">
	<property name="name" value="小明"/>
</bean>

数组注入

<bean id="student" class="pojo.Student">
	<property name="books">
		<array>
		    <value>西游记</value>
		    <value>红楼梦</value>
		    <value>水浒传</value>
		</array>
	</property>
</bean>

List注入

<bean id="student" class="pojo.Student">
    <property name="hobbys">
	      <list>
	      	  <value>听歌</value>
	          <value>看电影</value>
	          <value>爬山</value>
	      </list>
     </property>
</bean>

Map注入

<bean id="student" class="pojo.Student">
    <property name="card">
          <map>
              <entry key="中国邮政" value="456456456465456"/>
              <entry key="建设" value="1456682255511"/>
          </map>
      </property>
</bean>

set注入

<bean id="student" class="pojo.Student">
    <property name="games">
        <set>
            <value>LOL</value>
            <value>BOB</value>
            <value>COC</value>
        </set>
    </property>
</bean>

Null注入

<bean id="student" class="pojo.Student">
  	<property name="wife"><null/></property>
</bean>

Properties注入

<bean id="student" class="pojo.Student">
     <property name="info">
         <props>
             <prop key="学号">20190604</prop>
             <prop key="性别"></prop>
             <prop key="姓名">小明</prop>
         </props>
     </property>
</bean>

测试代码

注入代码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就是java对象 , 由Spring创建和管理-->
    <bean id="student" class="pojo.Student">
        <property name="name" value="zstar"/>
        <property name="books">
            <array>
                <value>西游记</value>
                <value>红楼梦</value>
                <value>水浒传</value>
            </array>
        </property>
        <property name="hobbys">
            <list>
                <value>听歌</value>
                <value>看电影</value>
                <value>爬山</value>
            </list>
        </property>
        <property name="card">
            <map>
                <entry key="中国邮政" value="456456456465456"/>
                <entry key="建设" value="1456682255511"/>
            </map>
        </property>
        <property name="games">
            <set>
                <value>LOL</value>
                <value>BOB</value>
                <value>COC</value>
            </set>
        </property>
        <property name="wife"><null/></property>
        <property name="info">
            <props>
                <prop key="学号">20190604</prop>
                <prop key="性别"></prop>
                <prop key="姓名">小明</prop>
            </props>
        </property>
    </bean>

</beans>

Student.java

package pojo;

import java.util.List;
import java.util.Map;
import java.util.Properties;
import java.util.Set;
public class Student {
    private String name;
    private String[] books;
    private List<String> hobbys;
    private Map<String,String> card;
    private Set<String> games;
    private String wife;
    private Properties info;
    public void setName(String name) {
        this.name = name;
    }
    public void setBooks(String[] books) {
        this.books = books;
    }
    public void setHobbys(List<String> hobbys) {
        this.hobbys = hobbys;
    }
    public void setCard(Map<String, String> card) {
        this.card = card;
    }
    public void setGames(Set<String> games) {
        this.games = games;
    }
    public void setWife(String wife) {
        this.wife = wife;
    }
    public void setInfo(Properties info) {
        this.info = info;
    }
    public void show(){
        System.out.println("name="+ name
                + ",books="
        );
        for (String book:books){
            System.out.print("<<"+book+">>\\t");
        }
        System.out.println("\\n爱好:"+hobbys);
        System.out.println("card:"+card);
        System.out.println("games:"+games);
        System.out.println("wife:"+wife);
        System.out.println("info:"+info);
    }
}

测试MyTest.java

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import pojo.Student;

public class MyTest {
    public static void main(String[] args) {
        ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
        Student student = context.getBean("student", Student.class);
        student.show();
    }

}

测试结果:

其他注入方式(了解)

Bean的作用域

单例类型Singleton

beans配置:

<bean id="ServiceImpl" class="cn.csdn.service.ServiceImpl" scope="singleton">

Singleton是单例类型,就是在创建起容器时就同时自动创建了一个bean的对象,不管你是否使用,他都存在了,每次获取到的对象都是同一个对象。

原型类型Prototype

beans配置:

<bean id="account" class="com.foo.DefaultAccount" scope="prototype"/>

Prototype是原型类型,它在我们创建容器的时候并没有实例化,而是当我们获取bean的时候才会去创建一个对象,而且我们每次获取到的对象都不是同一个对象。

其他类型(了解)

以上是关于Spring学习2:依赖注入(DI)的主要内容,如果未能解决你的问题,请参考以下文章

框架学习 Spring之依赖注入DI

Spring学习笔记4:依赖注入 DI

Spring 学习 2- IOC原理 控制反转/依赖注入

Web框架—Spring Framework学习笔记(IoC DI Bean)

Spring 3.0 学习-DI 依赖注入_创建Spring 配置-使用一个或多个XML 文件作为配置文件,使用自动注入(byName),在代码中使用注解代替自动注入,使用自动扫描代替xml中bea(

Spring DI(依赖注入)