您好,登錄后才能下訂單哦!
這篇文章主要介紹Spring+SpringMVC配置事務管理無效怎么辦,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
一般我們在Spring的配置文件application.xml中對Service層代碼配置事務管理,可以對Service的方法進行AOP增強或事務處理如事務回滾,但是遇到一個問題,在Controller類中調用Service層方法,配置的事務管理會失效,查詢相關資料發現原因。其實Spring和SpringMVC倆個容器為父子關系,Spring為父容器,而SpringMVC為子容器。也就是說application.xml中應該負責掃描除@Controller的注解如@Service,而SpringMVC的配置文件應該只負責掃描@Controller,否則會產生重復掃描導致Spring容器中配置的事務失效。
因此正確的配置方式應該為:
Spring的配置文件:application.xml
<context:component-scan base-package="org.bc.redis" use-default-filters="true"> <!-- 排除含@Controller注解的類 --> <context:exclude-filter type="annotation" expression="org.bc.redis.controller.UserController"/> </context:component-scan>
或者
<!-- 指定掃描的包,避開包含@Controller注解的包 --> <context:component-scan base-package="org.bc.redis.service" use-default-filters="true"> </context:component-scan>
SpringMVC的配置文件:springmvc.xml
<!-- 只掃描含@Controller注解的包,避免重復掃描 --> <context:component-scan base-package="org.bc.redis.controller" use-default-filters="true"> </context:component-scan>
最后
經過測試,其實問題主要在于SpringMVC的配置文件掃包范圍,Spring的配置文件就算也掃了@Controller注解,但是在SpringMVC會重新掃描一次,事務管理的Service只要沒被重新掃描就不會出現事務失效問題。
以上是“Spring+SpringMVC配置事務管理無效怎么辦”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。