Spring Bean 配置文件
<context:component-scan base-package="com.taobao.vip.*">
<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
</context:component-scan>
Spring MVC Bean 配置文件
<context:component-scan base-package="com.taobao.vip.*">
<context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
</context:component-scan>