码迷,mamicode.com
首页 > 其他好文 > 详细

依赖注入

时间:2015-07-26 17:02:11      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

setter注入(推荐)

<bean id="className" class="classPath">

  <property name="student" ref="student"/>

  <property name="age" value="1"/>

</bean>

 

构造器注入

1

<bean id="className" class="classPath">

  <constructor-arg name="student" ref="student"/>

  <constructor-arg type="age" value="1"/>

</bean>

2

<bean id="className" class="classPath">

  <constructor-arg name="student" ref="student"/>

  <constructor-arg index="age" value="1"/>

</bean>

两个构造器注入的区别,当有两个或多个类型相同的属性的时候,使用第一种方法就会出现问题

 

注意:   1.在使用构造器注入的时候可能会产生循环依赖,抛出BeanCurrentlyexception异常

    2.使用ApplicationContext创建实体bean时,默认使用singleton模式,该模式下实体bean与容器同时创建,当然用户也可以需要的时候实例化即延迟实例化

      在bean里加lazy—init=“true”

 

依赖注入

标签:

原文地址:http://www.cnblogs.com/JavaTWW/p/4677918.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!