1. 程式人生 > >Spring+Mybatis整合事務不起作用之解決方案彙總

Spring+Mybatis整合事務不起作用之解決方案彙總

前言:

公司最近一個專案用到Spring和Mybatis,發現用起來挺方便,比以前的那個struts+hibernate舒服多了。廢話少說,直接擺問題,碰到的問題是,mybatis不在事務中執行,後臺日誌報 “Closing no transactional SqlSession [[email protected]]”錯誤。無論是加了@Transactional註解和是沒加都報這個資訊。一個方法中插入多條資料,某次插入失敗也不回滾。

問題描述:

環境: Spring 3.1.0 + Mybatis 3.1.0 + mybatis-spring 1.0.0 RC3 + DB2 9.5 + Tomcat 6.0.35

web工程名稱: isap

配置檔案:applicationContext.xml + isap-servlet.xml

先看配置資訊:

applicationContext.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
	xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:context="http://www.springframework.org/schema/context"
	xsi:schemaLocation=" 
          http://www.springframework.org/schema/beans 
          http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
          http://www.springframework.org/schema/tx 
          http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
          http://www.springframework.org/schema/context 
          http://www.springframework.org/schema/context/spring-context-3.0.xsd">   
         
          
	<!-- spring配置jndi -->
	<bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean">
		<property name="jndiName">
			<value>java:comp/env/jndi_isap</value>
		</property>
	</bean>	
 
	<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
		<property name="configLocation" value="classpath:config/mybatis-config.xml"></property>
		<property name="dataSource" ref="dataSource"/>
		<property name="mapperLocations">
			<list>
				<value>classpath:com/cosbulk/isap/*/dao/mapper/*Mapper.xml</value>
			</list>
		</property>
	</bean>

	<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
		<property name="dataSource" ref="dataSource" />
		<qualifier value="isap"/>
	</bean>	

    <!-- 如果是isap的表,用@Transactional("isap"),如果是smis用 @Transactional("smis")管理事務-->
	<tx:annotation-driven transaction-manager="transactionManager" /> 
	
 	<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
 		<property name="sqlSessionFactory" ref="sqlSessionFactory"/>
 		<property name="basePackage" value="com.cosbulk.isap"></property>
 	</bean>
 	 	
 	<!-- /////////////////////////////////////////////////////////////////////////// -->
 	
 	<!-- smis資料來源 -->
	<bean id="smisDataSource" class="org.springframework.jndi.JndiObjectFactoryBean">
		<property name="jndiName">
			<value>java:comp/env/jndi_smis</value>
		</property>
	</bean>	   
	<bean id="smisSqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
		<property name="configLocation" value="classpath:config/mybatis-config.xml"></property>
		<property name="dataSource" ref="smisDataSource"/>
		<property name="mapperLocations">
			<list>
			<value>classpath:com/cosbulk/smis/dao/mapper/*Mapper.xml</value>
			</list>
		</property>
	</bean>
	<bean id="smisTransactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
		<property name="dataSource" ref="smisDataSource" />
		<qualifier value="smis"/>
	</bean>	
	<!-- 如果是isap的表,用@Transactional("isap"),如果是smis用 @Transactional("smis")管理事務-->
	<tx:annotation-driven transaction-manager="smisTransactionManager" /> 
	
 	<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
 		<property name="sqlSessionFactory" ref="smisSqlSessionFactory"/>
 		<property name="basePackage" value="com.cosbulk.smis"></property>
 	</bean> 	
 
</beans>

在applicationContext.xml檔案中,主要配置了資料來源和dao介面以及mapper檔案相關資訊,其他的bean資訊在isap-servlet.xml檔案中定義。

配置檔案: isap-servlet.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:mvc="http://www.springframework.org/schema/mvc"
	xsi:schemaLocation=" 
           http://www.springframework.org/schema/beans 
           http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
           http://www.springframework.org/schema/context 
           http://www.springframework.org/schema/context/spring-context-3.0.xsd
           http://www.springframework.org/schema/mvc 
           http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd"
	default-autowire="byName">

	<!--排除掃描的包, 對web包中的所有類進行掃描,以完成Bean建立和自動依賴注入的功能 -->
	<context:component-scan base-package="com.cosbulk.isap">
		<context:exclude-filter type="regex" expression="com.cosbulk.isap.*.*.model"/>
		<context:exclude-filter type="regex" expression="com.cosbulk.isap.*.*.dao.*"/>
	</context:component-scan>
	
	<context:component-scan base-package="com.cosbulk.smis">
		<context:exclude-filter type="regex" expression="com.cosbulk.smis.*.*.model"/>
		<context:exclude-filter type="regex" expression="com.cosbulk.smis.*.*.dao.*"/>
	</context:component-scan>
<mvc:annotation-driven/> <!--新增攔截器,類級別的處理器對映 --> <mvc:interceptors> <bean class="com.cosbulk.isap.common.interceptor.CheckLoginInterceptor" /> </mvc:interceptors> <!-- 支援檔案上傳 --> <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"> <property name="defaultEncoding" value="UTF-8" /> <!-- <property name="maxUploadSize" value="5000000" /> max size 5M --> </bean> <!-- 異常處理 --> <bean id="exceptionResolver" class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver"> <property name="defaultErrorView"> <value>errorPages/error</value> </property> <property name="defaultStatusCode"> <value>500</value> </property> <property name="warnLogCategory"> <value>org.springframework.web.servlet.handler.SimpleMappingExceptionResolver</value> </property> <property name="exceptionMappings"> <props> <prop key="org.springframework.web.multipart.MaxUploadSizeExceededException">errorPages/maxUploadExceeded</prop> </props> </property> </bean> <!-- 檢視解析類 --> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="viewClass" value="org.springframework.web.servlet.view.JstlView" /> <property name="prefix" value="/view/" /> <property name="suffix" value=".jsp" /> </bean> </beans>
在這個配置檔案裡進行了所有的註解(@Controller、@Service等)掃描和mvc相關配置。

事務場景:

Service層通過註解@Transactional注入事務

  
@Service  
//預設將類中的所有函式納入事務管理.  
@Transactional("isap")  
public class UserService{  
    @Autowired  
    private UserDao userDao;  

    /**  
     * 獲取主鍵id  
     * @return  
     */  
    public Long getId() {  
        return userDao.getId();  
    }  
            
          /**  
     * 編輯使用者  
     * @param user  
     * @param param  
     */  
    public void updateUser(User user,Map<String,Object> param) {  
        //編輯使用者  
        userDao.updateUser(user);  
        //刪除原有的使用者角色關聯  
        userDao.deleteUserRole(param);  
        String s = null;  
        s.getBytes();  
        //新增使用者角色關聯  
        insertUserRole(param);  
    }  
         這裡用來測試事務回滾  
         ...  
}  

測試過幾次updateUser的呼叫,事務就是不起作用的,後臺log資訊如下:
DEBUG 2011-09-04 16:19:46,672 org.apache.ibatis.logging.commons.JakartaCommonsLoggingImpl: JDBC Connection [[email protected]] will not be managed by Spring  
  
DEBUG 2011-09-04 16:19:46,672 org.apache.ibatis.logging.commons.JakartaCommonsLoggingImpl: SqlSession [[email protected]] was not registered for synchronization because synchronization is not active  
  
DEBUG 2011-09-04 16:19:46,687 org.apache.ibatis.logging.commons.JakartaCommonsLoggingImpl: Committing JDBC Connection [[email protected]]  
  
DEBUG 2011-09-04 16:19:46,687 org.apache.ibatis.logging.commons.JakartaCommonsLoggingImpl: Closing no transactional SqlSession [[email protected]]  
  
DEBUG 2011-09-04 16:19:46,687 org.springframework.jdbc.datasource.DataSourceUtils: Returning JDBC Connection to DataSource  

解決方案:

1.root-context.xml
<!-- 不掃描帶有@Controller註解的類。因為這些類已經隨容器啟動時,在servlet-context中掃描過一遍了 -->
<context:component-scan base-package="com.kimho">
<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
</context:component-scan>

2、servlet-context.xml:
<!-- 掃描業務元件,讓spring不掃描帶有@Service註解的類(留在root-context.xml中掃描@Service註解的類),防止事務失效 -->
<context:component-scan base-package="com.kimho">
<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service"/>
</context:component-scan> 

我做了相應的修改,把isap-servlet裡的bean掃描拆成了兩部分,分別放入applicationContext.xml和isap-servlet.xml檔案中。

applicationContext.xml中加入:

 <!-- 掃描帶有@Service註解的類。 -->
	<context:component-scan base-package="com.cosbulk.isap">
		<context:include-filter type="annotation" expression="org.springframework.stereotype.Service" />
	</context:component-scan> 
	
	<context:component-scan base-package="com.cosbulk.smis">
		<context:include-filter type="annotation" expression="org.springframework.stereotype.Service" />
	</context:component-scan>

isap-servlet.xml檔案中,掃描bean部分換成:
<!--排除掃描的包, 對web包中的所有類進行掃描,以完成Bean建立和自動依賴注入的功能 -->
	<context:component-scan base-package="com.cosbulk.isap">
		<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service"/>
	</context:component-scan> 
	
	<context:component-scan base-package="com.cosbulk.smis">
		<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service"/>
	</context:component-scan>

重啟伺服器測試,發現效果和之前一樣,事務還是沒起作用。開始以為是和包掃描的位置有關,於是把掃描的位置放到檔案末尾,發現還是沒有起作用。最後偶然一個想法clean了下tomcat,然後重啟,居然事務有效了。

總結: 修改完配置檔案後,clean下工程,重啟載入新的配置檔案。OK,問題解決。

2、如果按照你的步驟設定為ID為null的話,那麼就需要捕獲mybatis丟擲的異常,然後在catch語句中丟擲一個Exception,這個時候Spring容器的事務管理就會起作用,會回滾事務。

3、如果用mysql資料庫,資料庫表你如果是自動建表,那麼就需要把建表的Engine設定為InnoDB格式,自動建表的格式為:MyISAM,這中格式的是不支援事務管理的。

總結下: Spring在使用ContextLoadListener載入applicationContext.xml或其他名稱的xml檔案時,能進行資料來源和相關事務註解的檢查,啟動事務特性。若在isap-servlet.xml檔案中載入是,僅作為普通bean定義載入。所以一個良好的習慣就是,分層配置相關的bean。applicationContext.xml中配置資料庫相關的bean(dao、service等), isap-servlet中配置mvc相關的bean(controller等)。

相關推薦

Spring+Mybatis整合事務作用解決方案彙總

前言: 公司最近一個專案用到Spring和Mybatis,發現用起來挺方便,比以前的那個struts+hibernate舒服多了。廢話少說,直接擺問題,碰到的問題是,mybatis不在事務中執行,後臺日誌報 “Closing no transactional SqlSes

Spring+Mybatis整合事務作用

前言: 公司最近一個專案用到Spring和Mybatis,發現用起來挺方便,比以前的那個struts+hibernate舒服多了。廢話少說,直接擺問題,碰到的問題是,mybatis不在事務中執行,後臺日誌報 “Closing no transactional SqlSession [[email&#

spring-hibernate整合 事務作用

當spring和hibernate 整合後,事務不起作用 解決辦法:通過Spring的SessionFactory的getCurrentSession的方法建立Session 一、首先說一下hibernate中建立用來連線資料庫的Session,有兩種方式。 1.通過Sp

spring,springmvc,hibernate整合事務作用

剛學習完這三大框架,跟著別人的部落格整合一下,就測試一下事務是否起作用,用的1/0來測試,用的@Transactional註解在service層,發現事務始終不起作用,也在網上查了一些資料,發現spring,springmvc配置檔案中掃描包衝突了,因為我的是在web.xm

Spring Boot使用事務作用

今天使用spring boot做關於事務的demo時發現在service層使用@Transactional註解執行之後遇到錯誤並不能回滾。@Service public class HelloContr

spring @Transactional 方法內事務作用解決辦法

class ManagerImpl implements Manager { @Override public void Method(){updateAndDelete()} public void updateBankCardBalance(){dao.update(

Safari瀏覽器對設定的高度作用解決方案

發現 文字 one 底部對齊 設定 pan select標簽 pro prop 1、在做瀏覽器兼容的時候,發現select標簽在safari蘋果瀏覽器中的高度永遠都是默認的,這時候解決的辦法是加上line-height屬性就可以設置;2、但加上line-height屬性可以

關於內層DIV設定margin-top作用解決方案

關於內層DIV設定margin-top不起作用的解決方案 閱讀目錄 關於內層DIV設定margin-top不起作用的解決方案 回到頂部 關於內層DIV設定margin-top不起作用的解決方案 (一) 近日在做另外一個站點的時候,又遇到這個問題,決定好好的研究

onchange監聽input值變化及input隱藏後change事件觸發的原因與解決方法(設定readonly後onchange作用解決方案)

轉自:https://www.cnblogs.com/white0710/p/7338456.html 1. onchange事件監聽input值變化的使用方法: <input id="test"></input> $("input"

onchange監聽input值變化及input隱藏後change事件觸發的原因與解決方法(設置readonly後onchange作用解決方案)

com sdn 使用方法 pan val 內容 tar span .html 轉自:https://www.cnblogs.com/white0710/p/7338456.html 1. onchange事件監聽input值變化的使用方法: <input id=

git_舊瓶新酒?談.gitignore檔案作用解決方案

git中.gitignore檔案不起作用的解決 本篇內容實際上很多部落格已經提到了,但是我想說的,是經過實際測試有效的解決方法。 什麼情況下.gitignore檔案會失效 當你已經使用git來track了一些不想要的檔案時,這些檔案是無法被.gitignore檔案忽略的。

谷歌Chrome瀏覽器提交表單無效,無法跳轉,a標籤作用解決方案

今天遇到一個坑爹的問題,找了很久才弄清楚原因,在此給廣大網友分享一下解決這個問題的經驗,以便少走彎路。 造成表單form無法提交的原因是,谷歌瀏覽器自作聰明的認為這屬於“重複提交”,於是被谷歌瀏覽

關於 Swift 中重寫 preferredStatusBarStyle 作用問題解決方案

前言:本次使用的 Swift 版本為 4.2 版本,所以程式碼上與之前版本的寫法會有不一樣的地方, 但思路都如此。那我就根據自己的專案簡單說下解決辦法, 又更好辦法的, 也請大牛留言探討, O(∩_∩)O謝謝! 分析: 在 iOS9 之前使用

為您解惑:關於內層DIV設定margin-top作用解決方案。。。

<span style="font-size:14px;">//程式碼如下: <div>上層</div> <div> <!--父層-->   <div style="margin-top:40

jquery append 動態新增的元素事件on 作用解決方案

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv=

.Net Mvc validateRequest設定為false作用解決方案

再跟shp16一起搞CMS,框架計劃使用Mvc,昨天除錯的時候,總是報“從客戶端(content=”<P>This is a test</P…”)中檢測到有潛在危險的 Request.Form 值”根據下面的提示,說是將“validateRequest”設定為“false”就好了,可是無論

android的listview中setselection()作用解決方案

遇到一個很詭異的問題,ListView資料沒有更改之前,setselection()方法呼叫效果一切正常;而填充資料更改之後,同樣的程式碼片段卻莫名其妙無效了。 先列出搜尋到網上的解決方法: 來源:http://stackoverflow.com/questions/14

Spring 事務作用的幾種情況

service() true bean 每次 語句 imp 作用 stc current 1:必須是runtime異常,方法不要有try catch語句。 2:service 中 @Service() public class AServiceImpl1 imple

jdk動態代理引起的spring事務作用

最近做專案遇到了一個很奇怪的問題,大致的業務場景是這樣的:我們首先設定兩個事務,事務parent和事務child,在Controller裡邊同時呼叫這兩個方法,示例程式碼如下: 1、場景A: 這裡其實是分別執行了兩個事物,執行的結果是兩個方法都可以插入資料!如下: 2、場景B: 修改上述程式碼如下:

在使用spring mvc時,我使用了@Service這樣的註解, 發現使用註解@Transactional宣告的事務作用

問題出現的場景: 在使用spring mvc時,我使用了@Service這樣的註解, 發現使用註解@Transactional宣告的事務不起作用。 我的配置如下: <mvc:annotation-driven /> <context:component-s