1. 程式人生 > >Spring事務配置的五種方式及事務傳播相關(不看後悔,一看必懂!)

Spring事務配置的五種方式及事務傳播相關(不看後悔,一看必懂!)

原文:http://blog.csdn.net/hjm4702192/article/details/17277669

前段時間對Spring的事務配置做了比較深入的研究,在此之間對Spring的事務配置雖說也配置過,但是一直沒有一個清楚的認識。通過這次的學習發覺Spring的事務配置只要把思路理清,還是比較好掌握的。

總結如下:

    Spring配置檔案中關於事務配置總是由三個組成部分,分別是DataSource、TransactionManager和代理機制這三部分,無論哪種配置方式,一般變化的只是代理機制這部分。

    DataSourceTransactionManager這兩部分只是會根據資料訪問方式有所變化,比如使用

Hibernate進行資料訪問時,DataSource實際為SessionFactoryTransactionManager的實現為HibernateTransactionManager

具體如下圖:

圖片位置 : http://www.360doc.com/content/14/0730/15/1073512_398133924.shtml

根據代理機制的不同,總結了五種Spring事務的配置方式,配置檔案如下:

第一種方式:每個Bean都有一個代理

[html]
  1. <?xmlversion="1.0"encoding="UTF-8"?>
  2. <beansxmlns="http://www.springframework.org/schema/beans"
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.     xmlns:context="http://www.springframework.org/schema/context"
  5.     xmlns:aop="http://www.springframework.org/schema/aop"
  6.     xsi:schemaLocation="http://www.springframework.org/schema/beans   
  7.            http://www.springframework.org/schema/beans/spring-beans-2.5.xsd  
  8.            http://www.springframework.org/schema/context  
  9.            http://www.springframework.org/schema/context/spring-context-2.5.xsd  
  10.            http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
  11.     <beanid="sessionFactory"
  12.             class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
  13.         <propertyname="configLocation"value="classpath:hibernate.cfg.xml"/>
  14.         <propertyname="configurationClass"value="org.hibernate.cfg.AnnotationConfiguration"/>
  15.     </bean>
  16.     <!-- 定義事務管理器(宣告式的事務) -->
  17.     <beanid="transactionManager"
  18.         class="org.springframework.orm.hibernate3.HibernateTransactionManager">
  19.         <propertyname="sessionFactory"ref="sessionFactory"/>
  20.     </bean>
  21.     <!-- 配置DAO -->
  22.     <beanid="userDaoTarget"class="com.bluesky.spring.dao.UserDaoImpl">
  23.         <propertyname="sessionFactory"ref="sessionFactory"/>
  24.     </bean>
  25.     <beanid="userDao"
  26.         class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean">
  27.            <!-- 配置事務管理器 -->
  28.          <propertyname="transactionManager"ref="transactionManager"/>
  29.          <propertyname="target"ref="userDaoTarget"/>
  30.          <propertyname="proxyInterfaces"value="com.bluesky.spring.dao.GeneratorDao"/>
  31.          <!-- 配置事務屬性 -->
  32.          <propertyname="transactionAttributes">
  33.             <props>
  34.                 <propkey="*">PROPAGATION_REQUIRED</prop>
  35.             </props>
  36.         </property>
  37.     </bean>
  38. </beans>

第二種方式:所有Bean共享一個代理基類


[html] 
  1. <?xmlversion="1.0"encoding="UTF-8"?>
  2. <beansxmlns="http://www.springframework.org/schema/beans"
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.     xmlns:context="http://www.springframework.org/schema/context"
  5.     xmlns:aop="http://www.springframework.org/schema/aop"
  6.     xsi:schemaLocation="http://www.springframework.org/schema/beans   
  7.            http://www.springframework.org/schema/beans/spring-beans-2.5.xsd  
  8.            http://www.springframework.org/schema/context  
  9.            http://www.springframework.org/schema/context/spring-context-2.5.xsd  
  10.            http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
  11.     <beanid="sessionFactory"
  12.             class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
  13.         <propertyname="configLocation"value="classpath:hibernate.cfg.xml"/>
  14.         <propertyname="configurationClass"value="org.hibernate.cfg.AnnotationConfiguration"/>
  15.     </bean>
  16.     <!-- 定義事務管理器(宣告式的事務) -->
  17.     <beanid="transactionManager"
  18.         class="org.springframework.orm.hibernate3.HibernateTransactionManager">
  19.         <propertyname="sessionFactory"ref="sessionFactory"/>
  20.     </bean>
  21.     <beanid="transactionBase"
  22.             class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean"
  23.             lazy-init="true"abstract="true">
  24.         <!-- 配置事務管理器 -->
  25.         <propertyname="transactionManager"ref="transactionManager"/>
  26.         <!-- 配置事務屬性 -->
  27.         <propertyname="transactionAttributes">
  28.             <props>
  29.                 <propkey="*">PROPAGATION_REQUIRED</prop>
  30.             </props>
  31.         </property>
  32.     </bean>
  33.     <!-- 配置DAO -->
  34.     <beanid="userDaoTarget"class="com.bluesky.spring.dao.UserDaoImpl">
  35.         <propertyname="sessionFactory"ref="sessionFactory"/>
  36.     </bean>
  37.     <beanid="userDao"parent="transactionBase">
  38.         <propertyname="target"ref="userDaoTarget"/>
  39.     </bean>
  40. </beans>

第三種方式:使用攔截器


[html] 
  1. <?xmlversion="1.0"encoding="UTF-8"?>
  2. <beansxmlns="http://www.springframework.org/schema/beans"
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.     xmlns:context="http://www.springframework.org/schema/context"
  5.     xmlns:aop="http://www.springframework.org/schema/aop"
  6.     xsi:schemaLocation="http://www.springframework.org/schema/beans   
  7.            http://www.springframework.org/schema/beans/spring-beans-2.5.xsd  
  8.            http://www.springframework.org/schema/context  
  9.            http://www.springframework.org/schema/context/spring-context-2.5.xsd  
  10.            http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
  11.     <beanid="sessionFactory"
  12.             class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
  13.         <propertyname="configLocation"value="classpath:hibernate.cfg.xml"/>
  14.         <propertyname="configurationClass"value="org.hibernate.cfg.AnnotationConfiguration"/>
  15.     </bean>
  16.     <!-- 定義事務管理器(宣告式的事務) -->
  17.     <beanid="transactionManager"
  18.         class="org.springframework.orm.hibernate3.HibernateTransactionManager">
  19.         <propertyname="sessionFactory"ref="sessionFactory"/>
  20.     </bean>
  21.     <beanid="transactionInterceptor"
  22.         class="org.springframework.transaction.interceptor.TransactionInterceptor">
  23.         <propertyname="transactionManager"ref="transactionManager"/>
  24.         <!-- 配置事務屬性 -->
  25.         <propertyname="transactionAttributes">
  26.             <props>
  27.                 <propkey="*">PROPAGATION_REQUIRED</prop>
  28.             </props>
  29.         </property>
  30.     </bean>
  31.     <beanclass="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">
  32.         <propertyname="beanNames">
  33.             <list>
  34.                 <value>*Dao</value>
  35.             </list>
  36.         </property>
  37.         <propertyname="interceptorNames">
  38.             <list>
  39.                 <value>transactionInterceptor</value>
  40.             </list>
  41.         </property>
  42.     </bean>
  43.     <!-- 配置DAO -->
  44.     <beanid="userDao"class="com.bluesky.spring.dao.UserDaoImpl">
  45.         <propertyname="sessionFactory"ref="sessionFactory"/>
  46.     </bean>
  47. </beans>


第四種方式:使用tx標籤配置的攔截器

[html] 
  1. <?xmlversion="1.0"encoding="UTF-8"?>
  2. <beansxmlns="http://www.springframework.org/schema/beans"
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.     xmlns:context="http://www.springframework.org/schema/context"
  5.     xmlns:aop="http://www.springframework.org/schema/aop"
  6.     xmlns:tx="http://www.springframework.org/schema/tx"
  7.     xsi:schemaLocation="http://www.springframework.org/schema/beans   
  8.            http://www.springframework.org/schema/beans/spring-beans-2.5.xsd  
  9.            http://www.springframework.org/schema/context  
  10.            http://www.springframework.org/schema/context/spring-context-2.5.xsd  
  11.            http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd  
  12.            http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
  13.     <context:annotation-config/>
  14.     <context:component-scanbase-package="com.bluesky"/>
  15.     <beanid="sessionFactory"
  16.             class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
  17.         <propertyname="configLocation"value="classpath:hibernate.cfg.xml"/>
  18.         <propertyname="configurationClass"value="org.hibernate.cfg.AnnotationConfiguration"/>
  19.     </bean>
  20.     <!-- 定義事務管理器(宣告式的事務) -->
  21.     <beanid="transactionManager"
  22.         class="org.springframework.orm.hibernate3.HibernateTransactionManager">
  23.         <propertyname="sessionFactory"ref="sessionFactory"/>
  24.     </bean>
  25.     <tx:adviceid="txAdvice"transaction-manager="transactionManager">
  26.         <tx:attributes>
  27.             <tx:methodname="*"propagation="REQUIRED"/>
  28.         </tx:attributes>
  29.     </tx:advice>
  30.     <aop:config>
  31.         <aop:pointcutid="interceptorPointCuts"
  32.             expression="execution(* com.bluesky.spring.dao.*.*(..))"/>
  33.         <aop:advisoradvice-ref="txAdvice"
  34.             pointcut-ref="interceptorPointCuts"/>
  35.     </aop:config>
  36. </beans>


第五種方式:全註解


[html] 
  1. <?xmlversion="1.0"encoding="UTF-8"?>
  2. <beansxmlns="http://www.springframework.org/schema/beans"
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.     xmlns:context="http://www.springframework.org/schema/context"
  5.     xmlns:aop="http://www.springframework.org/schema/aop"
  6.     xmlns:tx="http://www.springframework.org/schema/tx"
  7.     xsi:schemaLocation="http://www.springframework.org/schema/beans   
  8.            http://www.springframework.org/schema/beans/spring-beans-2.5.xsd  
  9.            http://www.springframework.org/schema/context  
  10.            http://www.springframework.org/schema/context/spring-context-2.5.xsd  
  11.            http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd  
  12.            http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
  13.     <context:annotation-config/>
  14.     <context:component-scanbase-package="com.bluesky"/>
  15.     <tx:annotation-driventransaction-manager="transactionManager"/>
  16.     <beanid="sessionFactory"
  17.             class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
  18.         <propertyname="configLocation"value="classpath:hibernate.cfg.xml"/>
  19.         <propertyname="configurationClass"value="org.hibernate.cfg.AnnotationConfiguration"/>
  20.     </bean>
  21.     <!-- 定義事務管理器(宣告式的事務) -->
  22.     <beanid="transactionManager"
  23.         class="org.springframework.orm.hibernate3.HibernateTransactionManager">
  24.         <propertyname="sessionFactory"ref="sessionFactory"/>
  25.     </bean>
  26. </beans>

此時在DAO上需加上@Transactional註解,如下:


[java] 
  1. package com.bluesky.spring.dao;  
  2. import java.util.List;  
  3. import org.hibernate.SessionFactory;  
  4. import org.springframework.beans.factory.annotation.Autowired;  
  5. import org.springframework.orm.hibernate3.support.HibernateDaoSupport;  
  6. import org.springframework.stereotype.Component;  
  7. import com.bluesky.spring.domain.User;  
  8. @Transactional
  9. @Component("userDao")  
  10. publicclass UserDaoImpl extends HibernateDaoSupport implements UserDao {  
  11.     public List<User> listUsers() {  
  12.         returnthis.getSession().createQuery("from User").list();  
  13.     }  
  14. }  

Spring宣告式事務讓我們從複雜的事務處理中得到解脫。使得我們再也無需要去處理獲得連線、關閉連線、事務提交和回滾等這些操作。再也無需要我們在與事務相關的方法中處理大量的try…catch…finally程式碼。 
我們在使用Spring宣告式事務時,有一個非常重要的概念就是事務屬性。事務屬性通常由事務的傳播行為,事務的隔離級別,事務的超時值和事務只讀標誌組成。我們在進行事務劃分時,需要進行事務定義,也就是配置事務的屬性。 
SpringTransactionDefinition介面中定義這些屬性,以供PlatfromTransactionManager使用, PlatfromTransactionManager是spring事務管理的核心介面。 


[java] 
  1. 1.  TransactionDefinition    
  2. 2.  publicinterface TransactionDefinition {    
  3. 3.      int getPropagationBehavior();    
  4. 4.      int getIsolationLevel();    
  5. 5.      int getTimeout();    
  6. 6.      boolean isReadOnly();    
  7. 7.  }    

getTimeout()方法,它返回事務必須在多少秒內完成。 
isReadOnly(),事務是否只讀,事務管理器能夠根據這個返回值進行優化,確保事務是隻讀的。 
getIsolationLevel()方法返回事務的隔離級別,事務管理器根據它來控制另外一個事務可以看到本事務內的哪些資料。 

在TransactionDefinition介面中定義了五個不同的事務隔離級別 
ISOLATION_DEFAULT 這是一個PlatfromTransactionManager預設的隔離級別,使用資料庫預設的事務隔離級別.另外四個與JDBC的隔離級別相對應 
ISOLATION_READ_UNCOMMITTED 這是事務最低的隔離級別,它充許另外一個事務可以看到這個事務未提交的資料。這種隔離級別會產生髒讀,不可重複讀和幻像讀。 
例如: 
  Mary的原工資為1000,財務人員將Mary的工資改為了8000,但未提交事務 

Java程式碼  

1. Connection con1 = getConnection();  

2. con.setAutoCommit(false);  

3. update employee set salary = 8000 where empId ="Mary";  


與此同時,Mary正在讀取自己的工資 

Java程式碼  

1. Connection con2 = getConnection();  

2. select  salary from employee where empId ="Mary";  

3. con2.commit();  



Mary發現自己的工資變為了8000,歡天喜地! 
而財務發現操作有誤,而回滾了事務,Mary的工資又變為了1000 

Java程式碼  

1. //con1  

2.   con1.rollback();  


像這樣,Mary記取的工資數8000是一個髒資料。 

ISOLATION_READ_COMMITTED  保證一個事務修改的資料提交後才能被另外一個事務讀取。另外一個事務不能讀取該事務未提交的資料。這種事務隔離級別可以避免髒讀出現,但是可能會出現不可重複讀和幻像讀。 

ISOLATION_REPEATABLE_READ  這種事務隔離級別可以防止髒讀,不可重複讀。但是可能出現幻像讀。它除了保證一個事務不能讀取另一個事務未提交的資料外,還保證了避免下面的情況產生(不可重複讀)。 

在事務1中,Mary 讀取了自己的工資為1000,操作並沒有完成 

Java程式碼  

1. con1 = getConnection();  

2. select salary from employee empId ="Mary";  



在事務2中,這時財務人員修改了Mary的工資為2000,並提交了事務. 

Java程式碼  

1. con2 = getConnection();  

2. update employee set salary = 2000;  

3. con2.commit();  



在事務1中,Mary 再次讀取自己的工資時,工資變為了2000 

Java程式碼  

1. //con1  

2. select salary from employee empId ="Mary";  



在一個事務中前後兩次讀取的結果並不致,導致了不可重複讀。 
使用ISOLATION_REPEATABLE_READ可以避免這種情況發生。 

ISOLATION_SERIALIZABLE 這是花費最高代價但是最可靠的事務隔離級別。事務被處理為順序執行。除了防止髒讀,不可重複讀外,還避免了幻像讀。 

目前工資為1000的員工有10人。 
事務1,讀取所有工資為1000的員工。 

Java程式碼  

1. con1 = getConnection();  

2. Select * from employee where salary =1000;  

共讀取10條記錄 

這時另一個事務向employee表插入了一條員工記錄,工資也為1000 

Java程式碼  

1. con2 = getConnection();  

2. Insert into employee(empId,salary) values("Lili",1000);  

3. con2.commit();  



事務1再次讀取所有工資為1000的員工 

Java程式碼  

1. //con1  

2. select * from employee where salary =1000;  



共讀取到了11條記錄,這就產生了幻像讀。 
ISOLATION_SERIALIZABLE能避免這樣的情況發生。但是這樣也耗費了最大的資源。 

getPropagationBehavior()返回事務的傳播行為,由是否有一個活動的事務來決定一個事務呼叫。 

在TransactionDefinition介面中定義了七個事務傳播行為。 

PROPAGATION_REQUIRED 如果存在一個事務,則支援當前事務。如果沒有事務則開啟一個新的事務。 

Java程式碼  

1. //事務屬性 PROPAGATION_REQUIRED  

2. methodA{  

3. ……  

4. methodB();  

5. ……  

6. }  

7.   

8. //事務屬性 PROPAGATION_REQUIRED  

9. methodB{  

10.   ……  

11.}  


使用spring宣告式事務,spring使用AOP來支援宣告式事務,會根據事務屬性,自動在方法呼叫之前決定是否開啟一個事務,並在方法執行之後決定事務提交或回滾事務。 

單獨呼叫methodB方法 

Java程式碼  

1. main{  

2.   metodB();  

3. }  


相當於 

Java程式碼  

1. Main{  

2. Connection con=null;  

3.   

4.    rry{  

5.       con = getConnection();  

6.       con.setAutoCommit(false);  

7. //方法呼叫  

8. methodB();  

9. //提交事務  

10.con.commit();  

11.}  

12.Catch(RuntimeException ex){  

13.  //回滾事務  

14.  con.rollback();    

15.}  

16.finally{  

17.  //釋放資源  

18.  closeCon();  

19.}  

20.}  


Spring保證在methodB方法中所有的呼叫都獲得到一個相同的連線。在呼叫methodB時,沒有一個存在的事務,所以獲得一個新的連線,開啟了一個新的事務。 

單獨呼叫MethodA時,在MethodA內又會呼叫MethodB. 

執行效果相當於 

Java程式碼  

1. main{  

2.    Connection con = null;  

3.    try{  

4.       con = getConnection();  

5.       methodA();  

6.       con.commit();  

7. }  

8. cathc(RuntimeException ex){  

9.  con.rollback();  

10.}  

11.finally{  

12.  closeCon();  

13.}   

14.}  


呼叫MethodA時,環境中沒有事務,所以開啟一個新的事務. 
當在MethodA中呼叫MethodB時,環境中已經有了一個事務,所以methodB就加入當前事務。 

PROPAGATION_SUPPORTS 如果存在一個事務,支援當前事務。如果沒有事務,則非事務的執行。但是對於事務同步的事務管理器,PROPAGATION_SUPPORTS與不使用事務有少許不同。 

Java程式碼  

1. //事務屬性 PROPAGATION_REQUIRED   

2. methodA(){  

3.   methodB();  

4. }  

5.   

6. //事務屬性 PROPAGATION_SUPPORTS   

7. methodB(){  

8.   ……  

9. }  


單純的呼叫methodB時,methodB方法是非事務的執行的。 
當呼叫methdA時,methodB則加入了methodA的事務中,事務地執行。 

PROPAGATION_MANDATORY 如果已經存在一個事務,支援當前事務。如果沒有一個活動的事務,則丟擲異常。 

Java程式碼  

1. //事務屬性 PROPAGATION_REQUIRED   

2. methodA(){  

3.   methodB();  

4. }  

5.   

6. //事務屬性 PROPAGATION_MANDATORY   

7. methodB(){  

8.   ……  

9. }  


當單獨呼叫methodB時,因為當前沒有一個活動的事務,則會丟擲異常 
throw new IllegalTransactionStateException("Transactionpropagation 'mandatory' but no existing transaction found"); 

當呼叫methodA時,methodB則加入到methodA的事務中,事務地執行。 

PROPAGATION_REQUIRES_NEW 總是開啟一個新的事務。如果一個事務已經存在,則將這個存在的事務掛起。 

Java程式碼  

1. //事務屬性 PROPAGATION_REQUIRED   

2. methodA(){  

3.   doSomeThingA();  

4. methodB();  

5. doSomeThingB();  

6. }  

7.   

8. //事務屬性 PROPAGATION_REQUIRES_NEW   

9. methodB(){  

10.  ……  

11.}  


當單獨呼叫methodB時,相當於把methodb宣告為REQUIRED。開啟一個新的事務,事務地執行。 

當呼叫methodA時 

Java程式碼  

1. main(){  

2.   methodA();  

3. }  

情況有些大不一樣.相當於下面的效果。 

Java程式碼  

1. main(){  

2.  TransactionManager tm = null;  

3. try{  

4.   //獲得一個JTA事務管理器  

5.    tm = getTransactionManager();  

6.    tm.begin();//開啟一個新的事務  

7.    Transaction ts1 = tm.getTransaction();  

8.    doSomeThing();  

9.    tm.suspend();//

相關推薦

Spring事務配置方式事務傳播相關(後悔)

原文:http://blog.csdn.net/hjm4702192/article/details/17277669 前段時間對Spring的事務配置做了比較深入的研究,在此之間對Spring的事務配置雖說也配置過,但是一直沒有一個清楚的認識。通過這次的學習發覺Sprin

spring bean的單例和多例的使用場景和在單例bean中注入多例(後悔

為什麼用單例或者多例?何時用? 之所以用單例,是因為沒必要每個請求都新建一個物件,這樣子既浪費CPU又浪費記憶體; 之所以用多例,是為了防止併發問題;即一個請求改變了物件的狀態,此時物件又處理另一個請求,而之前請求對物件狀態的改變導致了物件對另一個請求做了錯誤的處理;  

spring bean的生命週期和作用域(後悔

bean的生命週期 生命週期執行的過程如下: 1)spring在讀取xml配置檔案時對bean進行例項化,預設bean是單例 2)spring對bean進行依賴注入 3)如果bean實現了BeanNameAware介面,spring將bean的id傳給setBeanName

Spring的IOC,DI和AOP(後悔

spring的優點 ①IOC和DI降低了元件之間的耦合性 ,讓程式設計師更專注於業務邏輯 ②容器提供了眾多的輔助類,能加快應用的開發 ③spring對於主流的應用框架提供了整合支援,如hibernate,mybatis,Struts等 ④spring屬於低侵入式設計,程式碼的汙染

spring資料來源配置方式

配置Spring資料來源 不管採用何種持久化技術,都需要定義資料來源。Spring中提供了4種不同形式的資料來源配置方式: spring自帶的資料來源(DriverManagerDataSource)

163vip郵箱註冊登陸方法詳解分鐘秒

fff vpd 註冊 是什麽 oss pro shadow water tom 高效辦公,缺了郵箱可不行,163vip郵箱的註冊及登陸方法是什麽呢?一分鐘!用吃一片厚切牛舌的時間帶你秒懂!註冊 1、在百度搜索TOMvip郵箱,點擊進入2、點擊屏幕右側的“立即註冊按鈕”3、選

SSH深度歷險(六) 深入淺出----- Spring事務配置方式

配置 處理 數據 data easy ont get 添加 由於 這對時間在學習SSH中Spring架構,Spring的事務配置做了具體總結。在此之間對Spring的事務配置僅僅是停留在聽說的階段,總結一下。總體把控。通過這次的學習發覺Spring的事務

Spring管理 hibernate 事務配置方式

Spring配置檔案中關於事務配置總是由三個組成部分,DataSource、TransactionManager和代理機制這三部分,無論是那種配置方法,一般變化的只是代理機制這塊!   首先我建立了兩個類,一個介面一個實現: Java程式碼&

Spring管理 hibernate 事務配置方式

Spring配置檔案中關於事務配置總是由三個組成部分,DataSource、TransactionManager和代理機制這三部分,無論是那種配置方法,一般變化的只是代理機制這塊! 首先我建立了兩個類,一個介面一個實現: Java程式碼  

spring事務配置方式

資料庫提供了四種事務隔離級別, 不同的隔離級別採用不同的鎖類開來實現. 在四種隔離級別中, Serializable的級別最高, Read Uncommited級別最低. 大多數資料庫的預設隔離級別為: Read Commited,如Sql Server , Oracle. 少數資料庫預設的隔離級別為Repe

(轉)spring事務管理幾方式

pac jpg gets point aos load man classpath XML 轉自:http://blog.csdn.net/jeamking/article/details/43982435 前段時間對Spring的事務配置做了比較深入的研究,在此之間對

Spring事務管理之幾方式實現事務

1、事務認識 大家所瞭解的事務Transaction,它是一些列嚴密操作動作,要麼都操作完成,要麼都回滾撤銷。Spring事務管理基於底層資料庫本身的事務處理機制。資料庫事務的基礎,是掌握Spring事務管理的基礎。這篇總結下Spring事務。 事務具備ACID四種特性,

使用spring jdbcTemplate和dbcp操作資料庫事務配置

程式碼結構及jar包 ServiceClass.java package com.orange.test; import java.sql.Types; import java.util.List; import javax.annotation.PostConst

面試題整理--開發中實現spring事務有5方式

Spring+Hibernate的實質: 就是把Hibernate用到的資料來源Datasource,Hibernate的SessionFactory例項,事務管理器HibernateTransactionManager,都交給Spring管理。 那麼再沒整合之前Hiber

Spring 依賴注入三方式的實現迴圈依賴問題的解決(原始碼+XML配置

搬磚啦,搬磚啦,這幾天在看Spring相關的書,下面給大家分享一下這幾天的心得與收穫,Go Go Go! Spring支援兩種依賴注入方式,分別是屬性注入,建構函式注入。除此之外,Spring還支援工廠注入方式。 接下來,我們一起來了解一下Spring的幾種注入方式。

Spring事物配置方式

前段時間對Spring的事務配置做了比較深入的研究,在此之間對Spring的事務配置雖說也配置過,但是一直沒有一個清楚的認識。通過這次的學習發覺Spring的事務配置只要把思路理清,還是比較好掌握的。 總結如下:

spring+springMVC中使用@Transcational方式管理事務配置方法

springMVC 中,事務通常都在service層控制,當然controller層也可以用事務,只要配置配對,但通常不建議直接在controller層配事務,controller的作用是管理引數以及做一些簡單的邏輯,

spring支援程式設計式事務管理和宣告式事務管理兩方式

1、宣告式事務提交,註解transaction,自動進行事務提交和回滾。    宣告式事務管理也有兩種常用的方式,一種是基於tx和aop名字空間的xml配置檔案,另一種就是基於@Transactional註解。2、程式設計式事務管理,在程式碼中顯示進行事務提交及回滾。原文:h

spring配置datasource三方式具體資訊

1、使用org.springframework.jdbc.datasource.DriverManagerDataSource說明:DriverManagerDataSource建立連線是隻要有連線就新建一個connection,根本沒有連線池的作用。<bean id

Spring系列教程八: Spring實現事務的兩方式

一、 Spring事務概念: 事務是一系列的動作,它們綜合在一起才是一個完整的工作單元,這些動作必須全部完成,如果有一個失敗的