1. 程式人生 > >解決Spring和SpringMVC掃描註解類的衝突問題

解決Spring和SpringMVC掃描註解類的衝突問題

最正確的配置方式:
在主容器中applicationContext.xml中,將Controller的註解排除掉 
 
 <context:component-scan base-package="com"> 
  <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller" /> 
  </context:component-scan> 
而在springmvc.xml中,將Service註解給去掉 
  <context:component-scan base-package="com"> 
  <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller" /> 
  <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service" /> 
  </context:component-scan> 
因為spring的context是父子容器,所以會產生衝突,由ServletContextListener產生的是父容器,springMVC產生的是子容器,子容器Controller進行掃描裝配時裝配了@Service註解的例項,而該例項理應由父容器進行初始化以保證事務的增強處理,所以此時得到的將是原樣的Service(沒有經過事務加強處理,故而沒有事務處理能力。

還有一種方式是將service層改用xml配置,其實這樣做也是變相的讓springmvc無法掃描service,而只能依賴父視窗也就是ServletContextListener來進行初始化,這樣同樣被賦予了事務性。

也可以用直接掃描的方式:

直接掃描比較省事,但是事務回得不到處理,所以在具體的層面上還需要加入註解去宣告事務,比如在dao層和service層加入@Transactional

-----------------------------------------------------------------------------------------------

幾種不同配置的測試:

(1)只在applicationContext.xml中配置如下
<context:component-scan base-package="com" />
啟動正常,但是任何請求都不會被攔截,簡而言之就是@Controller失效,出現404錯誤
(2)只在springmvc.xml中配置

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

啟動正常,請求也正常,但是事物失效,也就是不能進行回滾
(3)在applicationContext.xml和springmvc.xml中都配置

<context:component-scan base-package="com" />
啟動正常,請求正常,也是事物失效,不能進行回滾
(4)在applicationContext.xml中配置如下
<context:component-scan base-package="com.service" />
在springmvc.xml中配置如下
<context:component-scan base-package="com.action" />

或者按最正確的配置applicationContext.xml,將Controller的註解排除掉 ,springmvc.xml,將Service註解給去掉 
此時啟動正常,請求正常,事物也正常了。