IDEA版SSM入门到实战(Maven+MyBatis+Spring+SpringMVC) -Spring中组件扫描

发布时间:2023年12月20日

第一章 Spring中组件扫描

1.1 默认使用情况
<!--    开启组件扫描
        base-package:设置扫描注解包名【当前包及其子包】
-->
<context:component-scan base-package="com.atguigu"></context:component-scan>
1.2 包含扫描
  • 注意:
    • 使用包含扫描之前,必须设置use-default-filters=“false”【关闭当前包及其子包的扫描】
    • type
      • annotation:设置被扫描注解的全类名
      • assignable:设置被扫描实现类的全类名
<context:component-scan base-package="com.atguigu" use-default-filters="false">
    <context:include-filter type="annotation" 			 expression="org.springframework.stereotype.Repository"/>
    <context:include-filter type="assignable" expression="com.atguigu.service.impl.DeptServiceImpl"/>
</context:component-scan>
1.3 排除扫描
<!--    【排除扫描】   假设:环境中共有100包,不想扫描2/100-->
    <context:component-scan base-package="com.atguigu">
        <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
<!--        <context:exclude-filter type="assignable" expression="com.atguigu.controller.DeptController"/>-->
    </context:component-scan>
文章来源:https://blog.csdn.net/ZCY5202015/article/details/135037631
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。