码迷,mamicode.com
首页 > 编程语言 > 详细

Spring配置Bean

时间:2017-05-08 12:23:47      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:log   color   context   service   gtest   bean   new   employee   val   

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

标签:log   color   context   service   gtest   bean   new   employee   val   

原文地址:http://www.cnblogs.com/expiator/p/6824223.html

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