spring bean层的自动装配
在Spring中有三种装配的方式
-
在xml中显示的配置
-
在java中显示的配置
-
==隐式的自动装配bean==
<bean id="cat" class="com.kuang.pojo.Cat"/>
<bean id="dog" class="com.kuang.pojo.Dog"/>
<!--
byName : 会自动在容器上下文中查找,和自己对象set方法后面的值对应的bean_id
-->
<bean id="people" class="com.kuang.pojo.People" autowire="byName">
<property name="name" value="狂神"/>
</bean>
<!--