`

component-scan扫描使用上的容易忽略的use-default-filters

 
阅读更多

 

问题

如下方式可以成功扫描到@Controller注解的Bean,不会扫描@Service/@Repository的Bean。正确

 

 <context:component-scan base-package="org.bdp.system.test.controller" use-default-filters="false">   
     <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>   
</context:component-scan>  

  

但是如下方式,不仅仅扫描@Controller,还扫描@Service/@Repository的Bean,可能造成一些问题

 

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

 

这个尤其在springmvc+spring+hibernate等集成时最容易出问题的,最典型的错误就是,springmvc和spring同时扫描某些对象、导致事务失效等

这是什么问题呢?

分析

springmvc和spring默认会对@component、@named等进行扫描。因此如果想要配置springmvc或spring只对某种注解进行扫描,可以用include-filter+use-default-filter="false"配合设置,而如果想要配置除了某种注解其他都进行扫描可以直接使用exclude-filter进行配置

 

 

分享到:
评论

相关推荐

    spring组件扫描contextcomponent-scan使用详解.pdf

    &lt;context:component-scan/&gt;标签提供了 use-default-filters 属性,该属性控制着是否使用默认的过滤器。默认情况下,use-default-filters 属性为 true,即使用默认的过滤器。如果将其设置为 false,则需要手动配置...

    spring mvc

    &lt;context:component-scan base-package="leot.test" use-default-filters="false"&gt; &lt;context:include-filter type="annotation" expression="org.springframework.stereotype.Service"/&gt; &lt;context:include-filter ...

    SpringMVC和Spring的配置文件扫描包详解

    &lt;context:component-scan&gt; 标签有一个 use-default-filters 属性,该属性默认为 true,这意味着会扫描指定包下的全部的标有 @Component 的类,并注册成 Bean。因此,如果仅仅是在配置文件中这么写 &lt;context:...

    Spring+SpringMVC配置事务管理无效原因及解决办法详解

    &lt;context:component-scan base-package="org.bc.redis.service" use-default-filters="true"&gt; &lt;/context:component-scan&gt; ``` SpringMVC 的配置文件 springmvc.xml: ``` &lt;context:component-scan base-package="org...

    Spring MVC 注解自动扫描失效原因分析

    在Spring MVC框架中,注解自动扫描是核心特性之一,它允许开发者通过在类或方法上使用特定注解(如@Controller、@Service、@Repository等)来声明组件,然后由Spring容器自动检测并管理这些组件。然而,在实际开发中...

    Java之Spring注解配置bean实例代码解析

    在使用&lt;context:component-scan/&gt;元素时,可以使用base-package属性指定需要扫描的基类包,resource-pattern属性可以用来过滤特定的类。如果需要扫描多个包,可以使用逗号分隔。 示例:&lt;context:component-scan ...

    基于注解的Spring_3.0.x_MVC

    &lt;context:component-scan base-package="com.dn" use-default-filters="false"&gt; &lt;context:include-filter expression="org.springframework.stereotype.Controller" type="annotation"/&gt; &lt;/context:component-scan&gt;...

    集成springmvc spring hibernate的配置

    &lt;context:component-scan base-package="com.mvc.web" use-default-filters="false"&gt; &lt;context:include-filter type="annotation" expression="org.springframework.stereotype.Controller" /&gt; &lt;/context:component...

    java基于spring注解AOP的异常处理的方法

    &lt;context:component-scan base-package="com.sishuok.es" use-default-filters="false"&gt; &lt;context:include-filter type="annotation" expression="org.springframework.stereotype.ControllerAdvice"/&gt; &lt;/context:...

    spring-framework-reference-4.1.2

    Not Using Commons Logging ................................................................... 12 Using SLF4J ..............................................................................................

    spring-framework-reference4.1.4

    Not Using Commons Logging ................................................................... 12 Using SLF4J ..............................................................................................

Global site tag (gtag.js) - Google Analytics