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