spring+springMVC,宣告式事務失效,原因以及解決辦法
阿新 • • 發佈:2019-02-09
一.宣告式事務配置:
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource" /> </bean> <tx:advice id="txAdvice" transaction-manager="transactionManager"> <tx:attributes> <tx:method name="add*" propagation="REQUIRED" read-only="false"/> <tx:method name="del*" propagation="REQUIRED" read-only="false"/> <tx:method name="get*" propagation="REQUIRED" read-only="true"/> <tx:method name="mod*" propagation="REQUIRED" read-only="false" /> </tx:attributes> </tx:advice> <aop:config> <aop:pointcut id="serviceMethods" expression="execution(public * com.lexing.platform.service.*.*(..))" /> <aop:advisor advice-ref="txAdvice" pointcut-ref="serviceMethods"/> </aop:config>
二.宣告式事務失效,原因
根本原因:由子容器掃描裝配了@Service 註解的例項。
spring的context是父子容器,由ServletContextListener 載入spring配置檔案產生的是父容器,springMVC載入配置檔案產生的是子容器,子容器對Controller進行掃描裝配時裝配了@Service註解的例項 (@Controller 例項依賴@Service例項),而該例項理應由父容器進行初始化以保證事務的增強處理,所以此時得到的將是原樣的Service(沒有經過事務加強處理,故而沒有事務處理能力。
三.解決辦法
1.spring配置檔案applicationContext中:
<!-- 不掃描帶有@Controller註解的類 ,讓 springMVC 子容器載入。
<context:component-scan base-package="com.lexing.platform">
<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
</context:component-scan>
2.springMVC配置檔案 servlet-context.xml中
<!-- 將 帶有 @Service註解的類,交由spring 父容器例項化,[ @Service例項依賴@Repository例項,故spring父容器也會裝配@Repository 例項 ]
<context:component-scan base-package="com.lexing.platform">
<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service"/>
</context:component-scan>