首页 > 代码库 > Spring配置Bean
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="http://www.mamicode.com/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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。