Spring配置Bean

Posted 乐之者

tags:

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

Spring能够在applicationContext.xml中通过配置bean完成实例化对象,设置属性等。

1.配置bean

<bean id="dao" class="springTest.DaoImpl">
</bean>

实例化对象,相当于以下代码:

DaoImpl dao=new DaoImpl();

2.配置属性property

<bean id="dao" class="springTest.DaoImpl">
     <property name="employee" value="lin"></property>
</bean>

 设置属性,也就是setter,相当于以下代码:

DaoImpl dao=new DaoImpl();
dao.setEmployee=lin;

 

3.配置对象属性property

<bean id="dao" class="springTest.DaoImpl"></bean>
<bean id="serviceImpl" class="springTest.ServiceImpl">
<property name="dao" ref="dao"></property>
</bean>

设置对象属性,相当于以下代码:

DaoImpl dao=new DaoImpl();
ServiceImpl serviceImpl=new ServiceImpl();
serviceImpl.setDao=dao;

 








以上是关于Spring配置Bean的主要内容,如果未能解决你的问题,请参考以下文章

05Spring源码-手写篇-手写Bean配置

Spring装配bean--02通过Java代码装配bean

Spring配置Bean

05Spring源码-手写篇-手写Bean配置

05Spring源码-手写篇-手写Bean配置

Spring-Bean配置-使用外部属性文件(转)