第三章 最小化Spring xml配置
自动装配(autowiring)
自动检测(autodiscovery)
自动装配
默认自动装配 (default-autowire默认为none,不进行自动装配)
<beans xmlns=...................
.......................
default-autowire="byType"> ...........
</beans>
使用注解装配
Spring默认禁用注解装配,需在context命名空间配置如下:
<context:annotation-config/>