91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring和SpringMVC掃描注解類沖突的解決方法

發布時間:2021-10-09 13:51:02 來源:億速云 閱讀:169 作者:柒染 欄目:開發技術

本篇文章給大家分享的是有關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注解給去掉

此時啟動正常,請求正常,事物也正常了。

Spring和SpringMVC注解掃描注意事項

現象

Springmvc和Spring設置自動掃描文件夾自動注入bean的時候有時候出現沖突

方法

1:springmvc設置只掃描controller

2:spring設置不掃描controller

代碼:

springmvc 的掃描設置只掃描controller  spring的掃描設置為不掃描controller的 防止重復注入bean管理   (出現未錯誤)
<!-- 設置使用Spring注解的類所在的jar包  設置不掃描下面規則的 -->
    <context:component-scan base-package="com.oig">
        <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller" />
        <context:exclude-filter type="annotation" expression="org.springframework.web.bind.annotation.ControllerAdvice" />
    </context:component-scan>
    <!-- 設置使用SpringMvc注解的類所在的jar包 設置只掃描自定義規則的-->
    <context:component-scan base-package="com.oig" use-default-filters="false">
        <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller" />
        <context:include-filter type="annotation" expression="org.springframework.web.bind.annotation.ControllerAdvice" />
    </context:component-scan>

以上就是Spring和SpringMVC掃描注解類沖突的解決方法,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

罗源县| 金湖县| 维西| 东阿县| 台山市| 新丰县| 吉木乃县| 霍州市| 旌德县| 乐业县| 惠州市| 蓬溪县| 和平区| 宝兴县| 安塞县| 安平县| 沿河| 浦县| 吉木萨尔县| 长沙县| 和政县| 万荣县| 密山市| 陕西省| 措勤县| 隆昌县| 津南区| 桂阳县| 汨罗市| 凤庆县| 南宁市| 丰原市| 溧水县| 新化县| 林芝县| 清河县| 南康市| 尼木县| 辽阳市| 鄢陵县| 吴川市|