<!-- 开启注解解析器,用于注入bean的 @Resource -->
<context:annotation-config></context:annotation-config>
<!--
类扫描的注解解析器:
component指的就是一个类
base-package:在该包及子包中进行扫描
用于@Service @Controller @Repository注解的使用,说白了就是bean的声明不需要在xml中设置了
而且还包含了context:annotation-config bean注入的功能 说白了就是有了这个注解,上面那个注解没必要写
-->
<context:component-scan base-package="com.xxc.spring.annotation.scan"></context:component-scan>
使用注解的命名空间:
xmlns:context="http://www.springframework.org/schema/context"
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-2.5.xsd