1. 程式人生 > >Spring與SpringMVC重複掃描問題

Spring與SpringMVC重複掃描問題

在SpringMVC.XML有以下的配置:

《!--掃描@controller註解--》

<context:component-scan base-package="com.xxx.controller">

   <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller" />

</context:component-scan>

 

把最終的包寫上,而不能這樣寫base-package="com.xxx"。這種寫法對於:include-filter來講它都會掃描。而不是僅僅掃描@controller

如果這樣,一般會導致一個常見的錯誤---事務不起作用。解決的方法:新增:use-default-filters=”false”

<context:component-scan base-package="com.xxx" use-default-filters="false"> 

  <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller" /> 

</context:component-scan>

 

 在Spring.xml配置

<context:component-scan base-package="com.xxx"> 

  <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller" />

</context:component-scan>

 

這樣的意思 不包括@controller