美文网首页
Spring三种bean注入方式

Spring三种bean注入方式

作者: wyatt_plus | 来源:发表于2017-05-31 18:57 被阅读0次

    Spring中依赖注入有三种注入方式:
    一、构造器注入;
    二、设值注入(setter方式注入);
    三、Feild方式注入(注解方式注入)。

    一、构造器注入
    构造器注入顾名思义就是在程序组件中实现构造器,构造器可以是一个也可以是多个。废话不多说,直接上代码。

    package com.fredia.service.impl;  
      
    import java.util.List;  
      
    import cn.glzaction.service.interfaces.PersonDaoIF;  
    import cn.glzaction.service.interfaces.PersonServiceIF;  
      
    public class PersonServiceBean implements PersonServiceIF{  
      
    //自定义类  
        private PersonDaoIF personDaoBean;  
    //String类型  
        private String name;  
    //集合类型    
        private List list;  
          
    //构造器     
        public PersonServiceBean(PersonDaoBean personDaoBean,String name,List list){  
            this.personDaoBean = personDaoBean;  
            this.name = name;  
            this.list = list;  
        }  
    //方法,用于显示  
        public void display(){  
            personDaoBean.add();  
            System.out.println(name);  
            System.out.println(list);  
        }  
    }  
    
    

    上面的代码中构造器要注入三个参数,同时这三个参数也是三种不同的类型,自定义类、String类型,集合类型,其中自定义类PersonDaoBean 具体的实现我们这里就不累述了,因为这不是重点。下面我们再来看一下在Spring的配置文件中如何来配置。

    <bean id="personDao" class="com.fredia.service.impl.PersonDaoBean"></bean >  
      
    <!--构造器方式注入-->  
    <bean id="personService" class="com.fredia.service.impl.PersonServiceBean">  
        <constructor-arg index="0" type="cn.glzaction.service.impl.PersonDaoBean" ref="personDao"/>  
        <constructor-arg index="1" type="java.lang.String" value="glzaction"/>  
        <constructor-arg index="2" type="java.util.List">  
            <list>  
                <value>list1</value>  
                <value>list2</value>  
                <value>list3</value>  
            </list>  
        </constructor-arg>  
    </bean>  
    
    
      java代码如何实现构造器我想大家一定都很清楚,否则的话就有点讲不过去了,呵呵,所以这里我也就不加以说明了,主要说一下上面的xml配置。id为“personDao”的bean是PersonServiceBean的私有属性,它的注入是采用无参构造器的注入方式注入的,这也不详细说明。主要说一下id为“personService”类的构造器注入。<coustructor-arg>是构造器标签元素,通过设定它的属性可以往构造器传递参数,index属性值表示要设定的参数在构造器形参中的索引顺序,例如上面的配置,list是第三个参数,所以它对应的索引为2,index是可选属性,所谓可选并不是说在任何情况下都可以不使用,要视具体情况而定,type为参数的类型,这个也是可选参数。还有两个很重要的属性就是ref和value,如果注入的是bean,就要使用ref,ref的值就是对应的bean。如果注入的是基本类型或者string类型就用value,直接将对应的值填入即可。
    

    二、设值注入(setter方式注入)
    设值注入就是通过setXxxx方法将bean注入到组件中,自定义类如下

    
    package com.fredia.service.impl;  
      
    import cn.glzaction.service.interfaces.PersonDaoIF;  
    import java.util.*;  
      
    public class PersonDaoBean implements PersonDaoIF {  
      
        private String name;  
          
        private Integer id;  
          
        private List list;  
          
        private Map map;  
          
        public void setName(String name) {  
            this.name = name;  
        }  
        public void setId(Integer id) {  
            this.id = id;  
        }  
        public void setList(List list) {  
            this.list = list;  
        }  
        public void setMap(Map map) {  
            this.map = map;  
        }  
      
        @Override  
        public void add() {  
            // TODO Auto-generated method stub  
            System.out.println(map);  
            System.out.println(list);  
            System.out.println(id);  
            System.out.println(name);  
        }  
    }  
    

    采用设置注入只要有setter方法即可,但是有时由于编程习惯也会讲getter方法引进,但是要清楚:设值注入与getter方法无关。这里还有一点需要注意,那就是能使用基本类型,如果非要使用基本类型的话就要使用其对应的包装类型,如上面使用的是Integer而不是int。Spring的xml配置如下:

    
    <bean id="personDao" class="com.fredia.service.impl.PersonDaoBean">  
        <property name="name" type="java.lang.String" value="glzaction"/>  
        <property name="id" type="java.lang.Integer" value="1"/>  
        <property name="list" type="java.util.List">  
            <list>  
                <value>list1</value>  
                <value>list2</value>  
                <value>list3</value>  
            </list>  
        </property>  
        <property name="map" type="java.util.Map">  
            <map>  
                <entry key="key1" value="value1"></entry>  
                <entry key="key2" value="value2"></entry>  
            </map>  
        </property>  
    </bean>  
    

    设值注入采用的是<property>标签元素,其中的name属性对应的是要注入的变量名,type属性值对应的该变量的类型,可以是自定义类或者包装类型。value属性对应的是相应的值,还有一个ref属性,该属性值对应的是bean。

    相关文章

      网友评论

          本文标题:Spring三种bean注入方式

          本文链接:https://www.haomeiwen.com/subject/nbmjfxtx.html