spring - property和constructor-arg的使用

http://jingyan.baidu.com/article/11c17a2c749a61f446e39d94.html


配置文件的根元素是beans,每个组件使用bean元素来定义,bean元素可以有许多属性,其中有两个是必须的:id和class。id表示组件的默认名称,class表示组件的类型。

方法/步骤

  1. 依赖注入的方式:  constructor-arg:通过构造函数注入。   property:通过setxx方法注入。

  2. 设值注入,使用property子标签:

    <bean id="renderer" class="com.apress.prospring.ch2.StandardOutMessageRenderer">                       <property name="messageProvider">           

    <ref local="provider"/>       

    </property>   

    </bean>   

  3. 构造子注入,使用constructor-arg子标签:

    <bean id="provider"class="com.apress.prospring.ch4.ConfigurableMessageProvider">       <constructor-arg>           

    <value>This is a configurable message</value>       

    </constructor-arg>   

    </bean>   

  4. 使用constructor-arg标签的index属性,对应于构造函数的多个参数,index属性的值从0开始。   

    <bean id="provider" lass="com.apress.prospring.ch4.ConfigurableMessageProvider">       <constructor-arg index="0">           

    <value>first parameter</value>       

    </constructor-arg>       

    <constructor-arg index="1">           

    <value>second parameter</value>       

    </constructor-arg>     

    </bean>   

  5.  使用constructor-arg的type属性,避免构造子冲突:

    <bean id="constructorConfusion" class="com.apress.prospring.ch4.ConstructorConfusion">       

    <constructor-arg type="int">           

    <value>90</value>       

    </constructor-arg>   

    </bean>   

    public class ConstructorConfusion {

          public ConstructorConfusion(String someValue) {

               System.out.println("ConstructorConfusion(String) called");

           }

           public ConstructorConfusion(int someValue) {

               System.out.println("ConstructorConfusion(int) called");

           }

    }

  6. 注入集合属性,使用list,map,set和props标签,分别对应List,Map,Set和Properties:

    <bean id="injectCollection" class="com.apress.prospring.ch4.CollectionInjection">

           <property name="map">

               <map>

                   <entry key="someValue">

                       <value>Hello World!</value>

                   </entry>

                   <entry key="someBean">

                       <ref local="oracle"/>

                    </entry>

               </map>

           </property>

           <property name="props">

               <props>

                   <prop key="firstName">

                       Rob

                   </prop>

                   <prop key="secondName">

                       Harrop

                   </prop>

               </props>

           </property>

           <property name="set">

               <set>

                   <value>Hello World!</value>

                   <ref local="oracle"/>

               </set>

           </property>

           <property name="list">

               <list>

                   <value>Hello World!</value>

                   <ref local="oracle"/>

                </list>

           </property>

       </bean>   

  • 2
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值