Spring-依赖注入

依赖注入分为:普通,数组,List,Map,Set,Null,Properties,Bean。

目录结构:、

 

 

Address.java

package pojo;

public class Address {
    private String address;

    public void setAddress(String address) {
        this.address = address;
    }

    public String getAddress() {
        return address;
    }

    @Override
    public String toString() {
        return "Address{" +
                "address='" + address + '\'' +
                '}';
    }
}

Student.java

package pojo;

import java.util.*;

public class Student {
    private String name;
    private Address address;
    private String[] books;
    private List<String> hobbys;
    private Map<String,String> card;
    private Set<String> games;
    private String wife;
    private Properties info;

    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;
    }

    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<String> getHobbys() {
        return hobbys;
    }

    public void setHobbys(List<String> hobbys) {
        this.hobbys = hobbys;
    }

    public Map<String, String> getCard() {
        return card;
    }

    public void setCard(Map<String, String> card) {
        this.card = card;
    }

    public Set<String> getGames() {
        return games;
    }



    public void setGames(Set<String> games) {
        this.games = games;
    }

    @Override
    public String toString() {
        return "Student{" +
                "name='" + name + '\'' +
                ", address=" + address.toString() +
                ", books=" + Arrays.toString(books) +
                ", hobbys=" + hobbys +
                ", card=" + card +
                ", games=" + games +
                ", wife='" + wife + '\'' +
                ", info=" + info +
                '}';
    }
}

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
        https://www.springframework.org/schema/beans/spring-beans.xsd">

    <bean id="address" class="pojo.Address">

    </bean>

    <bean id="student" class="pojo.Student">
        <!--    普通注入    -->
        <property name="name" value="苗可卓"/>
        <!--    Bean注入    -->
        <property name="address" ref="address"/>
        <!--    数组注入    -->
        <property name="books">
            <array>
                <value>红楼梦</value>
                <value>西游记</value>
            </array>
        </property>
        <!--   List注入     -->
        <property name="hobbys">
            <list>
                <value>音乐</value>
                <value>打球</value>
            </list>
        </property>
        <!--    Map注入    -->
        <property name="card">
            <map>
                <entry key="20183629" value="苗可卓"/>
                <entry key="20000228" value="苗迪"/>
            </map>
        </property>
        <!--    Set    -->
        <property name="games">
            <set>
                <value>LOL</value>
                <value>CF</value>
            </set>
        </property>
        <!--   null     -->
        <property name="wife">
            <null/>
        </property>

        <!--   Properties     -->
        <property name="info">
            <props>
                <prop key="学号">20183629</prop>
            </props>
        </property>
    </bean>



</beans>

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 =(Student)context.getBean("student");
        System.out.println(student.toString());
    }
}

 

运行结果:

 

posted @ 2021-07-05 17:32  yizhixiaozhu  阅读(51)  评论(0编辑  收藏  举报