Files
notes_estom/Spring/Spring5/code/shangguigu02/src/bean03.xml
2022-10-14 23:39:59 +08:00

27 lines
866 B
XML

<?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://www.springframework.org/schema/beans/spring-beans.xsd">
<!-- 配置User bean -->
<bean id="emp" class="com.ykl.bean.Emp">
<!--
普通属性
-->
<property name="ename" value="lucy"></property>
<property name="gender" value="nv"></property>
<!--
级联对象的创建方法
-->
<property name="dept">
<bean id="dept" class="com.ykl.bean.Dept">
<property name="dname" value="security"></property>
</bean>
</property>
</bean>
<bean id="userDao" class="com.ykl.dao.UserDaoImpl"></bean>
</beans>