Spring设置注入和构造注入的区别

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring设置注入和构造注入的区别相关的知识,希望对你有一定的参考价值。

Spring设置注入和构造注入的区别
1)构造注入可以再构造器中决定依赖关系的注入顺序,有限依赖的优先注入。例如,组件中其它依赖关系的注入,常常需要依赖于Datasource的注入。采用构造注入,可以在代码中清晰地决定注入顺序。
2)对于依赖关系无需变化的Bean,构造注入更加有用。因为没有setter方法,所有的依赖关系全部在构造器内设定。因此,无需担心后续代码对依赖关系的破坏。
3)依赖关系只能在构造器中设定,则只有组建的创建者才能改变组建的依赖关系。队组建的调用者而言,组件内部的依赖关系完全透明,更符合高内聚的原则。
参考技术A

构造器注入:

Java代码

<bean id="tonyanRepository" class="org.springframework.batch.core.repository.support.SimpleJobRepository">
<constructor-arg ref="tonyanInstanceDao"></constructor-arg>
<constructor-arg ref="tonyanExecutionDao"></constructor-arg>
<constructor-arg ref="tonaynExecutionDao"></constructor-arg>
</bean>

设值注入

Java代码

<bean id="jobIncrementer" class="org.springframework.jdbc.support.incrementer.mysqlMaxValueIncrementer">  
<property name="dataSource" ref="tonyanDataSource" />  
<property name="incrementerName" value="TONYAN_TONYAN_JOB_SEQ" />  
<property name="columnName" value="ID"></property>  
</bean>

不同和差异

相比之下,设值注入具有如下的优点:

与传统的JavaBean的写法更相似,程序开发人员更容易理解、接受。通过setter方法设定依赖关系显得更加直观、自然。

对于复杂的依赖关系,如果采用构造注入,会导致构造器过于臃肿,难以阅读。Spring在创建Bean实例时,需要同时实例化其依赖的全部实例,因而导致性能下降。而使用设值注入,则能避免这些问题。

尤其是在某些属性可选的情况下,多参数的构造器更加笨重。

-----------------------------------------------------------


构造注入也不是绝对不如设值注入,在某些特定的场景下,构造注入比设值注入更优秀:

构造注入可以在构造器中决定依赖关系的注入顺序,优先依赖的优先注入。例如,组件中其他依赖关系的注入,常常需要依赖于Datasource的注入。采用构造注入,可以在代码中清晰地决定注入顺序。

对于依赖关系无须变化的Bean,构造注入更有用处。因为没有setter方法,所有的依赖关系全部在构造器内设定。因此,无须担心后续的代码对依赖关系产生破坏。

依赖关系只能在构造器中设定,则只有组件的创建者才能改变组件的依赖关系。对组件的调用者而言,组件内部的依赖关系完全透明,更符合高内聚的原则。

综上所述,一般采用以设值注入为主,构造注入为辅的注入策略。对于依赖关系无须变化的的注入,尽量采用构造注入;而其他的依赖关系的注入,则考虑采用设值注入

Spring:IOC之DI(依赖注入)Set注入和构造器注入的区别和实现!

一、构造器注入

  • 构造器注入其实在上一篇文章中讲得比较详细了,在这里就不再赘述,只举个最简单的例子来吧。

①实体类:

public class Person {
    private String name;
    private int age;
    private String like;
    private String high;

    public Person(String name, int age, String like, String high)   {
        this.name = name;
        this.age = age;
        this.like = like;
        this.high = high;
    }
    //set、get、tostring方法因为篇幅原因省略,请手动加上!
}

②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 name="person1,person2 person3;person4" class="entity.Person">
        <constructor-arg index="0" value="丁大大1"/>
        <constructor-arg name="age" value="23"/>
        <constructor-arg type="java.lang.String" value="钓鱼1"/>
        <constructor-arg type="java.lang.String" value="173"/>
    </bean>
</beans>

③测试类:

public class Test {
    public static void main(String[] args) {
        ApplicationContext Context = new ClassPathXmlApplicationContext("ContextAplication.xml");
        Person person = Context.getBean("person4", Person.class);
        System.out.println(person);
    }
}

④执行结果:

\'Spring(三):IOC之DI(依赖注入)Set注入和构造器注入的区别和实现!_Spring\'
 

⑤总结:

  • 无参构造器不用多说,无法注入值
  • 可以通过有参构造器来注入值

二、Set 注入(重点!!!!!)

  • 前提: 实体类:
public class Pojo {
    private String name;
    private Person person;
    private int[] intArr;
    private List<String> list;
    private Map<String,Object> map;
    private Set<String> set;
    private String like;
    private Properties info;
}
//set、get、tostring方法因为篇幅原因省略,请手动加上!

2.01、常量注入

①beans.xml:

    <bean id="Pojo" name="testPojo" class="entity.Pojo">
        <property name="name" value="丁大大"/>
    </bean>

②测试类:

public class Test {
    public static void main(String[] args) {
        ApplicationContext Context = new ClassPathXmlApplicationContext("ContextAplication.xml");
        Pojo testPojo = Context.getBean("testPojo", Pojo.class);
        System.out.println(testPojo.getName());
    }
}

③执行结果:

\'Spring(三):IOC之DI(依赖注入)Set注入和构造器注入的区别和实现!_架构_02\'
 

2.02、Bean注入

①beans.xml:

  • 这里要注意property

  • value 是用来赋值常量的

  • ref 可以用来赋值bean

    <!--先将实体bean的值通过构造器注入进去-->
    <bean name="testPerson" class="entity.Person">
        <constructor-arg index="0" value="丁大大2"/>
        <constructor-arg name="age" value="23"/>
        <constructor-arg type="java.lang.String" value="钓鱼2"/>
        <constructor-arg type="java.lang.String" value="173"/>
    </bean>
    <!--再将实体bean注入到Pojo中去-->
    <bean id="Pojo" name="testPojo" class="entity.Pojo">
        <property name="name" value="丁大大"/>
        <property name="person" ref="testPerson"/>
    </bean>

②测试类:

public class Test {
    public static void main(String[] args) {
        ApplicationContext Context = new ClassPathXmlApplicationContext("ContextAplication.xml");
        Pojo testPojo = Context.getBean("testPojo", Pojo.class);
        System.out.println(testPojo.getName());
        System.out.println(testPojo.getPerson());
    }
}

③执行结果:

\'Spring(三):IOC之DI(依赖注入)Set注入和构造器注入的区别和实现!_Java_03\'
 

2.03、数组注入

①beans.xml:

  • 使用 array 来加值
    <bean id="Pojo" name="testPojo" class="entity.Pojo">
        <property name="intArr">
            <array>
                <value>7</value>
                <value>5</value>
                <value>9</value>
            </array>
        </property>
    </bean>

②测试类:

public class Test {
    public static void main(String[] args) {
        ApplicationContext Context = new ClassPathXmlApplicationContext("ContextAplication.xml");
        Pojo testPojo = Context.getBean("testPojo", Pojo.class);
        System.out.println(testPojo.getName());
        System.out.println(testPojo.getPerson());
        int[] intArr = testPojo.getIntArr();
        for (int i : intArr) {
            System.out.print(i+"  ");
        }
    }
}

③执行结果:

 

\'Spring(三):IOC之DI(依赖注入)Set注入和构造器注入的区别和实现!_程序员_04\'
 

2.04、List注入

①beans.xml:

    <bean id="Pojo" name="testPojo" class="entity.Pojo">
        <property name="list">
            <list>
                <value>钓鱼</value>
                <value>捕鱼</value>
                <value>吃鱼</value>
            </list>
        </property>
    </bean>

②测试类:

public class Test {
    public static void main(String[] args) {
        ApplicationContext Context = new ClassPathXmlApplicationContext("ContextAplication.xml");
        Pojo testPojo = Context.getBean("testPojo", Pojo.class);
        List<String> list = testPojo.getList();
        for (String s : list) {
            System.out.print(s+"  ");
        }
    }
}

③执行结果:

\'Spring(三):IOC之DI(依赖注入)Set注入和构造器注入的区别和实现!_Spring_05\'
 

2.05、Map注入

①beans.xml:

    <property name="map">
            <map>
                <entry key="name" value="丁大大"/>
                <entry key="age" value="23"/>
                <entry key="like" value="钓鱼"/>
            </map>
        </property>

②测试类:

public class Test {
    public static void main(String[] args) {
        ApplicationContext Context = new ClassPathXmlApplicationContext("ContextAplication.xml");
        Pojo testPojo = Context.getBean("testPojo", Pojo.class);
        Map<String,Object> map = testPojo.getMap();
        for (Object value : map.values()){
            System.out.print(value+"  ");
        }
    }
}

③执行结果:

\'Spring(三):IOC之DI(依赖注入)Set注入和构造器注入的区别和实现!_架构_06\'
 

2.06、set注入

①beans.xml:

    <property name="set">
            <set>
                <value>英雄联盟</value>
                <value>吃鸡</value>
                <value>王者荣耀</value>
                <value>原神</value>
            </set>
        </property>

②测试类:

public class Test {
    public static void main(String[] args) {
        ApplicationContext Context = new ClassPathXmlApplicationContext("ContextAplication.xml");
        Pojo testPojo = Context.getBean("testPojo", Pojo.class);
        Set<String> set = testPojo.getSet();
        for (String s : set) {
            System.out.println(s);
        }
    }
}

③执行结果:

 

\'Spring(三):IOC之DI(依赖注入)Set注入和构造器注入的区别和实现!_程序员_07\'
 

2.07、Null注入

①beans.xml:

        <property name="like">
            <null></null>
        </property>

②测试类:

public class Test {
    public static void main(String[] args) {
        ApplicationContext Context = new ClassPathXmlApplicationContext("ContextAplication.xml");
        Pojo testPojo = Context.getBean("testPojo", Pojo.class);
        System.out.println(testPojo.getLike());
    }
}

③执行结果:

\'Spring(三):IOC之DI(依赖注入)Set注入和构造器注入的区别和实现!_程序员_08\'
 

2.08、Properties注入

①beans.xml:

        <property name="info">
            <props>
                <prop key="userName">773530472</prop>
                <prop key="passWord">123456</prop>
                <prop key="验证码">Tg3O</prop>
            </props>
        </property>

②测试类:

public class Test {
    public static void main(String[] args) {
        ApplicationContext Context = new ClassPathXmlApplicationContext("ContextAplication.xml");
        Pojo testPojo = Context.getBean("testPojo", Pojo.class);
        System.out.println(testPojo.getInfo().toString());
    }
}

③执行结果:

\'Spring(三):IOC之DI(依赖注入)Set注入和构造器注入的区别和实现!_架构_09\'
 

2.09、p命名注入

①beans.xml:注意这里要在头文件引入外部约束

\'Spring(三):IOC之DI(依赖注入)Set注入和构造器注入的区别和实现!_Spring_10\'
  \'Spring(三):IOC之DI(依赖注入)Set注入和构造器注入的区别和实现!_程序员_11\'
 
<?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"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

    <bean id="Person" class="entity.Person" p:name="丁大大" p:age="23"/>
</beans>

②测试类:

public class Test {
    public static void main(String[] args) {
        ApplicationContext Context = new ClassPathXmlApplicationContext("ContextAplication.xml");
        Person testPojo = Context.getBean("Person", Person.class);
        System.out.println(testPojo);
    }
}

③执行结果:

\'Spring(三):IOC之DI(依赖注入)Set注入和构造器注入的区别和实现!_Spring_12\'
 

2.10、c命名注入

①beans.xml:需要在头文件中加入约束文件

  • xmlns:c="www.springframework.org/schema/c"
  • C(构造: Constructor)命名空间 , 属性依然要设置set方法
  • 构造器中有几个参数就得写几个c的参数,不然会报错!


    \'Spring(三):IOC之DI(依赖注入)Set注入和构造器注入的区别和实现!_Spring_13\'
     
\'Spring(三):IOC之DI(依赖注入)Set注入和构造器注入的区别和实现!_程序员_14\'
 
<?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:c="http://www.springframework.org/schema/c"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

    <bean id="Person" class="entity.Person" c:name="丁大大" c:age="23" c:like="哈哈哈" c:high="123"></bean>
</beans>

②测试类:

public class Test {
    public static void main(String[] args) {
        ApplicationContext Context = new ClassPathXmlApplicationContext("ContextAplication.xml");
        Person testPojo = Context.getBean("Person", Person.class);
        System.out.println(testPojo);
    }
}

③执行结果:

\'Spring(三):IOC之DI(依赖注入)Set注入和构造器注入的区别和实现!_程序员_15\'
 

以上是关于Spring设置注入和构造注入的区别的主要内容,如果未能解决你的问题,请参考以下文章

Spring:IOC之DI(依赖注入)Set注入和构造器注入的区别和实现!

Spring 框架中 Setter 注入 和 构造器注入 方式的区别 与优劣

构造方法注入和设值注入有什么区别

依赖注入和服务定位器模式有啥区别?

Spring中构造器init-method@PostConstructafterPropertiesSet孰先孰后,自动注入发生时间以及单例多例的区别

认识Spring(下)