1. 程式人生 > >Spring註解事務失效

Spring註解事務失效

最近搭建公司的專案的環境,發現註解事務失效,糾結了半天,找到了結果記錄一下。

註解事務發現springmvc.xml 和spring.xml 重複掃描導致的

 <!-- 註解掃描包 -->   

這個是springmvc.xml  掃描的時候排除service註解的bean
<context:component-scan base-package="com.deppon">
<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service" /> 
</context:component-scan>  

這個是spring.xml

掃描的時候排除controller註解的bean

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

最終解決註解事務失效問題