七.自动装配
<!-- byname:就是在xml中找和我们set后面一样的bean的id/name 一样就给装上 -->
<!-- 如上面的cat spring就自动找到他 将他装上了 改为cats就找不到了-->
<!--只能取小写的 大写的id找不到 -->
<?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">
<bean name="dog" class="com.why.TestAuto_Assembling.Dog"/>
<bean name="cat" class="com.why.TestAuto_Assembling.Cat"/>
<bean name="human" class="com.why.TestAuto_Assembling.Human" autowire="byName"/>
</beans>
byType:自动在上下文寻找和我们属性类型一样的bean并装填 但是这个bean只能有
一个 如果存在多个 报错 但是可以省略id了
<?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">
<bean name="dog" class="com.why.TestAuto_Assembling.Dog"/>
<bean name="cat" class="com.why.TestAuto_Assembling.Cat"/>
<bean name="human1" class="com.why.TestAuto_Assembling.Human" autowire="byType"/>
</beans>
2.总结