标签:简单 它的 合成 http 属性 配置文件 核心 程序 其他
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"> <!-- 反转控制 --> <bean id="zhangsan" class="com.SpringIOC.demo.ZhangSan"></bean> <bean id="lisi" class="com.SpringIOC.demo.LiSi"></bean> <bean id="w" class="com.SpringIOC.demo.Work"> <!-- 依赖setter方法注入 --> <property name="test" ref="zhangsan"></property> </bean> <!-- 依赖注入 --> <bean id="girl" class="com.SpringIOC.zhuru.Girl"> <!--通过属性注入--> <property name="age" value="18"></property> <property name="name" value="翠花"></property> </bean> <bean id="Boy" class="com.SpringIOC.zhuru.Boy"> <property name="age" value="20"></property> <property name="name" value="翠山"></property> <property name="girl" ref="girl"></property> </bean> </beans>
标签:简单 它的 合成 http 属性 配置文件 核心 程序 其他
原文地址:http://www.cnblogs.com/vansly784759/p/7053626.html