<context:component-scan/>
扫描组件,可以被@ComponentScan代替
使用<context:component-scan/>后,就可以将<context:annotation-config/>移除
<context:annotation-config/>向Spring容器注册AutowiredAnnotationBeanPostProcessor、CommonAnnotationBeanPostProcessor、PersistenceAnnotationBeanPostProcessor以及RequiredAnnotationBeanPostProcessor这4个BeanPostProcessor
<context:component-scan/>提供两个子标签:<context:include-filter>和<context:exclude-filter>各代表引入和排除的过滤。
<context:component-scan/>有一个use-default-filters属性,该属性默认为为true,意味着会扫描指定包下的全部的标有@Component的类,并注册成bean,也就是@Component的子注解,如@Service,@Reposity,@Controller等
<context:component-scan base-package="tv.huan.weisp.web">
<!-- 加入下面这行希望只扫描@Controller,但实际不仅扫描包下面的@Controller,还会扫描的@Service -->
<!-- 原因是指定的include-filter没有起到作用,只要把use-default-filter设置成false就可以了,使用exclude-filter则不需要改此配置 -->
<context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
</context:component-scan>
@ServletComponentScan
Servlet、Filter、Listener 可以直接通过@WebServlet、@WebFilter、@WebListener注解自动注册,无需其他代码,自定义的拦截器会被屏蔽
- 实现ServletContextListener接口,在contextInitialized方法中完成注册,代码注册通过ServletRegistrationBean、FilterRegistrationBean和ServletListenerRegistrationBean获得控制。 也可以通过实现 ServletContextInitializer接口直接注册。
- 在SpringBootApplication上使用@ServletComponentScan注解后,Servlet、Filter、Listener 可以直接通过 @WebServlet、@WebFilter、@WebListener注解自动注册,无需其他代码。
@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class})
servlet3.0 首先提供了@WebServlet,@WebFilter 等注解,这样便有了抛弃web.xml的第一个途径,凭借注解声明servlet和filter来做到这一点。 - 动态配置Servlet:在jar文件中放入实现ServletContainerInitializer接口的初始化器