Spring事務配置的五種方式及事務傳播相關(不看後悔,一看必懂!)
原文:http://blog.csdn.net/hjm4702192/article/details/17277669
前段時間對Spring的事務配置做了比較深入的研究,在此之間對Spring的事務配置雖說也配置過,但是一直沒有一個清楚的認識。通過這次的學習發覺Spring的事務配置只要把思路理清,還是比較好掌握的。
總結如下:
Spring配置檔案中關於事務配置總是由三個組成部分,分別是DataSource、TransactionManager和代理機制這三部分,無論哪種配置方式,一般變化的只是代理機制這部分。
DataSource、TransactionManager這兩部分只是會根據資料訪問方式有所變化,比如使用
具體如下圖:
圖片位置 : http://www.360doc.com/content/14/0730/15/1073512_398133924.shtml
根據代理機制的不同,總結了五種Spring事務的配置方式,配置檔案如下:
第一種方式:每個Bean都有一個代理
[html]- <?xmlversion="1.0"encoding="UTF-8"?>
- <beansxmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:context="http://www.springframework.org/schema/context"
- xmlns:aop="http://www.springframework.org/schema/aop"
- xsi:schemaLocation="http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
- http://www.springframework.org/schema/context
- http://www.springframework.org/schema/context/spring-context-2.5.xsd
- http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
- <beanid="sessionFactory"
- class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
- <propertyname="configLocation"value="classpath:hibernate.cfg.xml"/>
- <propertyname="configurationClass"value="org.hibernate.cfg.AnnotationConfiguration"/>
- </bean>
- <!-- 定義事務管理器(宣告式的事務) -->
- <beanid="transactionManager"
- class="org.springframework.orm.hibernate3.HibernateTransactionManager">
- <propertyname="sessionFactory"ref="sessionFactory"/>
- </bean>
- <!-- 配置DAO -->
- <beanid="userDaoTarget"class="com.bluesky.spring.dao.UserDaoImpl">
- <propertyname="sessionFactory"ref="sessionFactory"/>
- </bean>
- <beanid="userDao"
- class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean">
- <!-- 配置事務管理器 -->
- <propertyname="transactionManager"ref="transactionManager"/>
- <propertyname="target"ref="userDaoTarget"/>
- <propertyname="proxyInterfaces"value="com.bluesky.spring.dao.GeneratorDao"/>
- <!-- 配置事務屬性 -->
- <propertyname="transactionAttributes">
- <props>
- <propkey="*">PROPAGATION_REQUIRED</prop>
- </props>
- </property>
- </bean>
- </beans>
第二種方式:所有Bean共享一個代理基類
[html]
- <?xmlversion="1.0"encoding="UTF-8"?>
- <beansxmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:context="http://www.springframework.org/schema/context"
- xmlns:aop="http://www.springframework.org/schema/aop"
- xsi:schemaLocation="http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
- http://www.springframework.org/schema/context
- http://www.springframework.org/schema/context/spring-context-2.5.xsd
- http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
- <beanid="sessionFactory"
- class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
- <propertyname="configLocation"value="classpath:hibernate.cfg.xml"/>
- <propertyname="configurationClass"value="org.hibernate.cfg.AnnotationConfiguration"/>
- </bean>
- <!-- 定義事務管理器(宣告式的事務) -->
- <beanid="transactionManager"
- class="org.springframework.orm.hibernate3.HibernateTransactionManager">
- <propertyname="sessionFactory"ref="sessionFactory"/>
- </bean>
- <beanid="transactionBase"
- class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean"
- lazy-init="true"abstract="true">
- <!-- 配置事務管理器 -->
- <propertyname="transactionManager"ref="transactionManager"/>
- <!-- 配置事務屬性 -->
- <propertyname="transactionAttributes">
- <props>
- <propkey="*">PROPAGATION_REQUIRED</prop>
- </props>
- </property>
- </bean>
- <!-- 配置DAO -->
- <beanid="userDaoTarget"class="com.bluesky.spring.dao.UserDaoImpl">
- <propertyname="sessionFactory"ref="sessionFactory"/>
- </bean>
- <beanid="userDao"parent="transactionBase">
- <propertyname="target"ref="userDaoTarget"/>
- </bean>
- </beans>
第三種方式:使用攔截器
[html]
- <?xmlversion="1.0"encoding="UTF-8"?>
- <beansxmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:context="http://www.springframework.org/schema/context"
- xmlns:aop="http://www.springframework.org/schema/aop"
- xsi:schemaLocation="http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
- http://www.springframework.org/schema/context
- http://www.springframework.org/schema/context/spring-context-2.5.xsd
- http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
- <beanid="sessionFactory"
- class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
- <propertyname="configLocation"value="classpath:hibernate.cfg.xml"/>
- <propertyname="configurationClass"value="org.hibernate.cfg.AnnotationConfiguration"/>
- </bean>
- <!-- 定義事務管理器(宣告式的事務) -->
- <beanid="transactionManager"
- class="org.springframework.orm.hibernate3.HibernateTransactionManager">
- <propertyname="sessionFactory"ref="sessionFactory"/>
- </bean>
- <beanid="transactionInterceptor"
- class="org.springframework.transaction.interceptor.TransactionInterceptor">
- <propertyname="transactionManager"ref="transactionManager"/>
- <!-- 配置事務屬性 -->
- <propertyname="transactionAttributes">
- <props>
- <propkey="*">PROPAGATION_REQUIRED</prop>
- </props>
- </property>
- </bean>
- <beanclass="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">
- <propertyname="beanNames">
- <list>
- <value>*Dao</value>
- </list>
- </property>
- <propertyname="interceptorNames">
- <list>
- <value>transactionInterceptor</value>
- </list>
- </property>
- </bean>
- <!-- 配置DAO -->
- <beanid="userDao"class="com.bluesky.spring.dao.UserDaoImpl">
- <propertyname="sessionFactory"ref="sessionFactory"/>
- </bean>
- </beans>
第四種方式:使用tx標籤配置的攔截器
[html]- <?xmlversion="1.0"encoding="UTF-8"?>
- <beansxmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:context="http://www.springframework.org/schema/context"
- xmlns:aop="http://www.springframework.org/schema/aop"
- xmlns:tx="http://www.springframework.org/schema/tx"
- xsi:schemaLocation="http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
- http://www.springframework.org/schema/context
- http://www.springframework.org/schema/context/spring-context-2.5.xsd
- http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
- http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
- <context:annotation-config/>
- <context:component-scanbase-package="com.bluesky"/>
- <beanid="sessionFactory"
- class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
- <propertyname="configLocation"value="classpath:hibernate.cfg.xml"/>
- <propertyname="configurationClass"value="org.hibernate.cfg.AnnotationConfiguration"/>
- </bean>
- <!-- 定義事務管理器(宣告式的事務) -->
- <beanid="transactionManager"
- class="org.springframework.orm.hibernate3.HibernateTransactionManager">
- <propertyname="sessionFactory"ref="sessionFactory"/>
- </bean>
- <tx:adviceid="txAdvice"transaction-manager="transactionManager">
- <tx:attributes>
- <tx:methodname="*"propagation="REQUIRED"/>
- </tx:attributes>
- </tx:advice>
- <aop:config>
- <aop:pointcutid="interceptorPointCuts"
- expression="execution(* com.bluesky.spring.dao.*.*(..))"/>
- <aop:advisoradvice-ref="txAdvice"
- pointcut-ref="interceptorPointCuts"/>
- </aop:config>
- </beans>
第五種方式:全註解
[html]
- <?xmlversion="1.0"encoding="UTF-8"?>
- <beansxmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:context="http://www.springframework.org/schema/context"
- xmlns:aop="http://www.springframework.org/schema/aop"
- xmlns:tx="http://www.springframework.org/schema/tx"
- xsi:schemaLocation="http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
- http://www.springframework.org/schema/context
- http://www.springframework.org/schema/context/spring-context-2.5.xsd
- http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
- http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
- <context:annotation-config/>
- <context:component-scanbase-package="com.bluesky"/>
- <tx:annotation-driventransaction-manager="transactionManager"/>
- <beanid="sessionFactory"
- class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
- <propertyname="configLocation"value="classpath:hibernate.cfg.xml"/>
- <propertyname="configurationClass"value="org.hibernate.cfg.AnnotationConfiguration"/>
- </bean>
- <!-- 定義事務管理器(宣告式的事務) -->
- <beanid="transactionManager"
- class="org.springframework.orm.hibernate3.HibernateTransactionManager">
- <propertyname="sessionFactory"ref="sessionFactory"/>
- </bean>
- </beans>
此時在DAO上需加上@Transactional註解,如下:
[java]
- package com.bluesky.spring.dao;
- import java.util.List;
- import org.hibernate.SessionFactory;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.orm.hibernate3.support.HibernateDaoSupport;
- import org.springframework.stereotype.Component;
- import com.bluesky.spring.domain.User;
- @Transactional
- @Component("userDao")
- publicclass UserDaoImpl extends HibernateDaoSupport implements UserDao {
- public List<User> listUsers() {
- returnthis.getSession().createQuery("from User").list();
- }
- }
Spring宣告式事務讓我們從複雜的事務處理中得到解脫。使得我們再也無需要去處理獲得連線、關閉連線、事務提交和回滾等這些操作。再也無需要我們在與事務相關的方法中處理大量的try…catch…finally程式碼。
我們在使用Spring宣告式事務時,有一個非常重要的概念就是事務屬性。事務屬性通常由事務的傳播行為,事務的隔離級別,事務的超時值和事務只讀標誌組成。我們在進行事務劃分時,需要進行事務定義,也就是配置事務的屬性。
Spring在TransactionDefinition介面中定義這些屬性,以供PlatfromTransactionManager使用, PlatfromTransactionManager是spring事務管理的核心介面。
[java]
- 1. TransactionDefinition
- 2. publicinterface TransactionDefinition {
- 3. int getPropagationBehavior();
- 4. int getIsolationLevel();
- 5. int getTimeout();
- 6. boolean isReadOnly();
- 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();//
原文:http://blog.csdn.net/hjm4702192/article/details/17277669
前段時間對Spring的事務配置做了比較深入的研究,在此之間對Spring的事務配置雖說也配置過,但是一直沒有一個清楚的認識。通過這次的學習發覺Sprin
為什麼用單例或者多例?何時用?
之所以用單例,是因為沒必要每個請求都新建一個物件,這樣子既浪費CPU又浪費記憶體;
之所以用多例,是為了防止併發問題;即一個請求改變了物件的狀態,此時物件又處理另一個請求,而之前請求對物件狀態的改變導致了物件對另一個請求做了錯誤的處理;
bean的生命週期
生命週期執行的過程如下:
1)spring在讀取xml配置檔案時對bean進行例項化,預設bean是單例
2)spring對bean進行依賴注入
3)如果bean實現了BeanNameAware介面,spring將bean的id傳給setBeanName
spring的優點
①IOC和DI降低了元件之間的耦合性 ,讓程式設計師更專注於業務邏輯
②容器提供了眾多的輔助類,能加快應用的開發
③spring對於主流的應用框架提供了整合支援,如hibernate,mybatis,Struts等
④spring屬於低侵入式設計,程式碼的汙染
配置Spring資料來源
不管採用何種持久化技術,都需要定義資料來源。Spring中提供了4種不同形式的資料來源配置方式:
spring自帶的資料來源(DriverManagerDataSource) fff vpd 註冊 是什麽 oss pro shadow water tom 高效辦公,缺了郵箱可不行,163vip郵箱的註冊及登陸方法是什麽呢?一分鐘!用吃一片厚切牛舌的時間帶你秒懂!註冊 1、在百度搜索TOMvip郵箱,點擊進入2、點擊屏幕右側的“立即註冊按鈕”3、選 配置 處理 數據 data easy ont get 添加 由於
這對時間在學習SSH中Spring架構,Spring的事務配置做了具體總結。在此之間對Spring的事務配置僅僅是停留在聽說的階段,總結一下。總體把控。通過這次的學習發覺Spring的事務
Spring配置檔案中關於事務配置總是由三個組成部分,DataSource、TransactionManager和代理機制這三部分,無論是那種配置方法,一般變化的只是代理機制這塊!
首先我建立了兩個類,一個介面一個實現:
Java程式碼&
Spring配置檔案中關於事務配置總是由三個組成部分,DataSource、TransactionManager和代理機制這三部分,無論是那種配置方法,一般變化的只是代理機制這塊!
首先我建立了兩個類,一個介面一個實現:
Java程式碼
資料庫提供了四種事務隔離級別, 不同的隔離級別採用不同的鎖類開來實現. 在四種隔離級別中, Serializable的級別最高, Read Uncommited級別最低. 大多數資料庫的預設隔離級別為: Read Commited,如Sql Server , Oracle. 少數資料庫預設的隔離級別為Repe pac jpg gets point aos load man classpath XML 轉自:http://blog.csdn.net/jeamking/article/details/43982435
前段時間對Spring的事務配置做了比較深入的研究,在此之間對
1、事務認識
大家所瞭解的事務Transaction,它是一些列嚴密操作動作,要麼都操作完成,要麼都回滾撤銷。Spring事務管理基於底層資料庫本身的事務處理機制。資料庫事務的基礎,是掌握Spring事務管理的基礎。這篇總結下Spring事務。
事務具備ACID四種特性,
程式碼結構及jar包
ServiceClass.java
package com.orange.test;
import java.sql.Types;
import java.util.List;
import javax.annotation.PostConst
Spring+Hibernate的實質:
就是把Hibernate用到的資料來源Datasource,Hibernate的SessionFactory例項,事務管理器HibernateTransactionManager,都交給Spring管理。
那麼再沒整合之前Hiber
搬磚啦,搬磚啦,這幾天在看Spring相關的書,下面給大家分享一下這幾天的心得與收穫,Go Go Go!
Spring支援兩種依賴注入方式,分別是屬性注入,建構函式注入。除此之外,Spring還支援工廠注入方式。
接下來,我們一起來了解一下Spring的幾種注入方式。
前段時間對Spring的事務配置做了比較深入的研究,在此之間對Spring的事務配置雖說也配置過,但是一直沒有一個清楚的認識。通過這次的學習發覺Spring的事務配置只要把思路理清,還是比較好掌握的。
總結如下:
springMVC 中,事務通常都在service層控制,當然controller層也可以用事務,只要配置配對,但通常不建議直接在controller層配事務,controller的作用是管理引數以及做一些簡單的邏輯,
1、宣告式事務提交,註解transaction,自動進行事務提交和回滾。 宣告式事務管理也有兩種常用的方式,一種是基於tx和aop名字空間的xml配置檔案,另一種就是基於@Transactional註解。2、程式設計式事務管理,在程式碼中顯示進行事務提交及回滾。原文:h
1、使用org.springframework.jdbc.datasource.DriverManagerDataSource說明:DriverManagerDataSource建立連線是隻要有連線就新建一個connection,根本沒有連線池的作用。<bean id
一、 Spring事務概念:
事務是一系列的動作,它們綜合在一起才是一個完整的工作單元,這些動作必須全部完成,如果有一個失敗的 相關推薦
Spring事務配置的五種方式及事務傳播相關(不看後悔,一看必懂!)
spring bean的單例和多例的使用場景和在單例bean中注入多例(不看後悔,一看必懂)
spring bean的生命週期和作用域(不看後悔,一看必懂)
Spring的IOC,DI和AOP(不看後悔,一看必懂)
spring資料來源配置四種方式
163vip郵箱註冊及登陸方法詳解,一分鐘秒懂!
SSH深度歷險(六) 深入淺出----- Spring事務配置的五種方式
Spring管理 hibernate 事務配置的五種方式
Spring管理 hibernate 事務配置的五種方式
spring事務配置的五種方式
(轉)spring事務管理幾種方式
Spring事務管理之幾種方式實現事務
使用spring jdbcTemplate和dbcp操作資料庫及事務配置
面試題整理--開發中實現spring的事務有5種方式
Spring 依賴注入三種方式的實現,及迴圈依賴問題的解決(原始碼+XML配置)
Spring事物配置的五種方式
spring+springMVC中使用@Transcational方式管理事務的配置方法
spring支援程式設計式事務管理和宣告式事務管理兩種方式
spring配置datasource三種方式及具體資訊
Spring系列教程八: Spring實現事務的兩種方式