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

20 lines
696 B
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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="userService" class="com.ykl.service.UserService">
<!--
注入userDao的对象
name属性值类里面的属性名称
ref属性:创建UserDao对象bean标签的id值。
-->
<property name="userDao" ref="userDao"></property>
</bean>
<bean id="userDao" class="com.ykl.dao.UserDaoImpl"></bean>
</beans>