系列文章:spring的xml配置是如何对应注解配置的之扫描配置

<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注解自动注册,无需其他代码,自定义的拦截器会被屏蔽

  1. 实现ServletContextListener接口,在contextInitialized方法中完成注册,代码注册通过ServletRegistrationBean、FilterRegistrationBean和ServletListenerRegistrationBean获得控制。 也可以通过实现 ServletContextInitializer接口直接注册。
  2. 在SpringBootApplication上使用@ServletComponentScan注解后,Servlet、Filter、Listener 可以直接通过 @WebServlet、@WebFilter、@WebListener注解自动注册,无需其他代码。
    @SpringBootApplication(exclude = {DataSourceAutoConfiguration.class})
    servlet3.0 首先提供了@WebServlet,@WebFilter 等注解,这样便有了抛弃web.xml的第一个途径,凭借注解声明servlet和filter来做到这一点。
  3. 动态配置Servlet:在jar文件中放入实现ServletContainerInitializer接口的初始化器
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值