Spring DI依赖注入

DI依赖注入

构造器注入

SET方式注入【重点】

  • 依赖注入:本质是set注入
    • 依赖:bean对象的创建依赖于容器
    • 注入:bean对象中的所有属性由容器来注入

【环境】

  1. 复杂类型

    public class Address {
        private String address;
    
        public String getAddress() {
            return address;
        }
    
        public void setAddress(String address) {
            this.address = address;
        }
    
    
  2. 真实测试对象

    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 Properties info;
        private String wife;
    }
    
  3. applicationContext.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">
    
        <!--让其存在于IOC-->
        <bean id="address" class="com.shi.pojo.Address">
            <property name="address" value="aynu"/>
        </bean>
    
        <bean id="student" class="com.shi.pojo.Student">
    
            <!--第一种 普通注入 value-->
            <property name="name" value="石头"/>
    
            <!--第二种注入 bean注入 使用ref-->
            <property name="address" ref="address"/>
    
            <!--数组注入 ref-->
            <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="身份证" value="123123132213"/>
                </map>
            </property>
    
            <!--Set集合-->
            <property name="games">
                <set>
                    <value>LOL</value>
                </set>
            </property>
    
            <!--null-->
            <property name="wife">
                <null/>
            </property>
    
            <!--Properties-->
            <property name="info">
                <props>
                    <prop key="学号">194804195</prop>
                </props>
            </property>
    
        </bean>
    
    </beans>
    

拓展方式注入

可以使用p命名空间或者c命名空间进行注入

官方解释:

网址:链接

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-QNQcqqnz-1635485159434)(C:\Users\帅帅的小石头\AppData\Roaming\Typora\typora-user-images\image-20211029130531481.png)]

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:p="http://www.springframework.org/schema/p"
       xmlns:c="http://www.springframework.org/schema/c"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        https://www.springframework.org/schema/beans/spring-beans.xsd">

    <!--p命名空间注入 可以直接注入属性 :property 相当于set注入 可以没有有参构造器-->
    <bean id="user" class="com.shi.pojo.User" p:name="石头" p:age="19"/>
    <!--c命名空间注入 相当于构造器注入:constructs-args 必须要有有参构造器 -->
    <bean id="user2" class="com.shi.pojo.User" c:age="18" c:name="ixaoshi"/>

</beans>

最重要的还是下面两行

xmlns:p="http://www.springframework.org/schema/p"
xmlns:c="http://www.springframework.org/schema/c"

/>

```

最重要的还是下面两行

xmlns:p="http://www.springframework.org/schema/p"
xmlns:c="http://www.springframework.org/schema/c"
上一篇:河南工程学院第五届ACM大学生程序设计竞赛(部分题解)


下一篇:Spring笔记(四):依赖注入(DI)