spring扫描组件的xml文件配置

spring扫描组件的xml文件配置

在很多配置中一般都会吧Spring-common.xml和Spring-MVC.xml进行分开配置,这种配置就行各施其职一样,显得特别清晰。
在Spring-MVC.xml中只对@Controller进行扫描就可,作为一个控制器,其他的事情不做。
在Spring-common.xml中只对一些事务逻辑的注解扫描。
现在给点一个项目的包结构
com.fq.controller和com.fq.service
在spring-mvc.xml的文件中可以这么写


<context:component-scan base-package="com.qqa.controller">
        <context:include-filter type="annotation"
            expression="org.springframework.stereotype.Controller" />
context:component-scan>

这里要把最终的包名写上,不可以直接写com.fq,这种写法对于include-filter来讲它都会扫描,而不是仅仅扫描@Controller
在spring-commont.xml中的配置


<context:component-scan base-package="com.qqa">
    <context:exclude-filter type="annotation"
        expression="org.springframework.stereotype.Controller" />
context:component-scan>

可以看到,他是要扫描com.fq包下的所有子类,不包含@Controller。对于exculude-filter不存在包不精确后都进行扫描的问题

你可能感兴趣的:(笔记)