Spring之bean一基础

在前面得博客依赖注入与控制反转中演示了应用spring实现ioc,在ApplicationContext.xml中有bean的配置,里面只是bean简单的应用。这篇主要是进一步学习使用bean。

一、定义

Spring之bean一基础

Spring之bean一基础

<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://"> <bean class="Cuiyw.Spring.Dao.DaoImpl"></bean> <bean class="Cuiyw.Spring.Service.ServiceImpl" scope="singleton"> <property ref="DaoImpl"></property> </bean> </beans>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zgjyzw.html