91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring 的事務處理

發布時間:2020-07-20 17:15:13 來源:網絡 閱讀:314 作者:沙漏半杯 欄目:編程語言

一、概述

(一)基本概念

1 、什么是Spring事務處理?

什么是事務處理我就不想回答了。 Spring 的事務處理,可以說是 Spring AOP 的一種實現。因為事務處理是所謂方面( Aspect )的一個子集。因此默認情況下,事務處理是利用 Java 動態代理機制實現的,這樣就必須先定義一個接口,然后再編寫實現;而對于沒有接口的 Javabean ,則通過 CGLIB 實現。這部分是 Spring AOP 部分的內容。


2 、兩種事務處理方式

和 EJB 一樣, Spring 也提供兩種事務處理方式,一種是編程式事務處理;一種是聲明式事務處理。


(二)框架圖

實現事務處理的兩種方式


Java 動態代理


CGLIB


?


兩種事務處理方式


編程式事務處理


聲明式事務處理


?


(三)何時使用什么

? ? ? ? ? 如果需要大量的事務處理,就用聲明式事務處理,如果很少的事務處理,就用編程式


二、詳細

? ? ? ? ? ? ? 編程式事務處理與聲明式事務處理


(一)編程式事務處理

1 、使用TransactionTemplate進行事務處理(Spring進行commit和rollback)

? ? ? ? ? ( 1 )使用事務處理的類


?


import javax.sql.DataSource;


import org.springframework.jdbc.core.*;


import org.springframework.transaction.*;


import org.springframework.dao.*;


?


public class bookDAO{


private DataSource dataSource;// 依賴注入 dataSource ,管理數據庫


private PlatformTransationManager transactionManager;// 依賴注入管理事務


?


public void setDataSource(DataSource dataSource){


? ? this.dataSource=dataSource;


}


?


? ? ?public void setTransactionManager(PlatformTransationManager transactionManager){


? ? ? ? ?this. transactionManager= transactionManager;


}


?


public int create(String msg){


? ? TransactionTemplate transactionTemplate=new TransactionTemplate(transactionManager);


? ? // 調用 transactionTemplate 的 execute 方法進行事務管理


? ? Object result= transactionTemplate.execute (


? ? ?// 這是一個回調函數,實現了 TransactionCallback 接口的 doInTransaction 方法,就是在這個方法里寫數據庫新增數據的操作


? ? ? ? ? new TransactionCallback()


{


? ? ? ? ? public Object doInTransaction(TransactionStatus status)


{


? ? ? ? ? ? ? // 數據庫操作代碼


? ? ? ? ? ? ? return resultObject;


? ? ? ? ? ?}


? ? ? ?}


[U1]? ? ? ?)


}


}


如果不想返回結果( resultObject ),則可以用 TransactionCallbackWithoutResult 來實現 TransactionCallback 接口,代碼如下:


? ? ? ? new TransactionCallback WithoutResult ()


{


? ? ? ? ? public Object doInTransaction WithoutResult (TransactionStatus status)


{


? ? ? ? ? ? ? // 數據庫操作代碼


? ? ? ? ? ??


? ? ? ? ? ?}


? ? ? ?}


?


( 2 )配置文件


<?xml version="1.0" encoding="UTF-8"?>


<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN"


?"http://www.springframework.org/dtd/spring-beans.dtd">


<beans>


? ?<!— 設 定dataSource à


? ?<bean id=”dataSource” class=”org.springframework.jdbc.datasource.DriverManagerDataSource”>


? ? ? <!— 使用SQL Server 數 據 庫 à


? ? ? ?<property name=”driverClassName”>


? ? ? ? ? <value>com.microsoft.jdbc.sqlserver.SQLServerDriver</value>


? ? ? ?</property>


? ? ? ? <property name=”url”>


? ? ? ? ? <value>jdbc:Microsoft:sqlserver://localhost:1433/stdb</value>


? ? ? ?</property>


<property name=”name”>


? ? ? ? ? <value>admin</value>


? ? ? ?</property>


<property name=”msg”>


? ? ? ? ? <value>admin</value>


? ? ? ?</property>


? ? </bean>


?


? ? <!— 設定 transactionManager à


? ? <bean id=”transactionManager”


class=”org.springframework.jdbc.datasource.DataSourceTransactionManager”>


? ? ? ? <property name=”dataSource”>


? ? ? ? ? ? <ref bean=”dataSource”/>


? ? ? ? </property>


? ? </bean>


?


? ?<!— 示例中 DAO-->


? ? <bean id=”bookDAO” class=”com.bookDAO”>


? ? ? ? <property name=”dataSource”>


? ? ? ? ? ? <ref bean=”dataSource”/>


? ? ? ? </property>


? ? ? ? <property name=”transactionManager”>


? ? ? ? ? ? <ref bean=”transactionManager”>


? ? ? ? </property>


? ?</bean>


</beans>


? ?這樣 Spring 就可以自動進行 commit 和 rollback 這兩個操作了。粉色部分是為了和 bookDAO 中的粉色部分相匹配。


2 、使用JdbcTemplate進行事務處理(硬編碼進行commit和rollback)

( 1 )使用事務處理的類


?


import javax.sql.DataSource;


import org.springframework.jdbc.core.*;


import org.springframework.transaction.*;


import org.springframework.dao.*;


?


public class bookDAO{


private DataSource dataSource;// 依賴注入 dataSource ,管理數據庫


private PlatformTransationManager transactionManager;// 依賴注入管理事務


?


public void setDataSource(DataSource dataSource){


? ? this.dataSource=dataSource;


}


?


? ? ?public void setTransactionManager(PlatformTransationManager transactionManager){


? ? ? ? ?this. transactionManager= transactionManager;


}


?


public int create(String msg){


? /*? TransactionTemplate transactionTemplate=new TransactionTemplate(transactionManager);


? ? ? Object result= transactionTemplate.execute (


? ? ? ?new TransactionCallback()


{


? ? ? ? ? public Object doInTransaction(TransactionStatus status)


{


?


? ? ? ? ? ? ? return resultObject;


? ? ? ? ? ?}


? ? ? ?}


? ? )*/


? // 使用下面的代碼替換上面注釋掉的部分


? ? DefaultTransactionDefinition def =new DefaultTransactionDefinition();


? ?TransactionStatus status=transactionManager.getTransaction(def);


? ?try


{


? ? ? ? JdbcTemplate jdbcTemplate=new JdbcTemplate(dataSource);


? ? ? ? jdbcTemplate.update(“INSERT INTO book VALUES(1,’gf’,’Mastering Spring’)”);


? ?}


? ?catch(DataAccessException ex)


{


? ? ? ?transactionzManager.rollback(status);


? ? ? ?throw ex;


? ?}


? ?finally


? ?{


? ? ? ? transactionManager.commit(status);


? ?}


}


}


( 2 )配置文件


同上


?


( 二)聲明式事務處理

( 1 )使用事務處理的類


?


import javax.sql.DataSource;


import org.springframework.jdbc.core.*;


import org.springframework.transaction.*;


import org.springframework.dao.*;


?


public class bookDAO{


private DataSource dataSource;// 依賴注入 dataSource ,管理數據庫


private PlatformTransationManager transactionManager;// 依賴注入管理事務


?


public void setDataSource(DataSource dataSource){


? ? this.dataSource=dataSource;


}


?


? ? ?public void setTransactionManager(PlatformTransationManager transactionManager){


? ? ? ? ?this. transactionManager= transactionManager;


}


?


public int create(String msg){


? ① /*? TransactionTemplate transactionTemplate=new TransactionTemplate(transactionManager);


? ? ? Object result= transactionTemplate.execute (


? ? ? ?new TransactionCallback()


{


? ? ? ? ? public Object doInTransaction(TransactionStatus status)


{


?


? ? ? ? ? ? ? return resultObject;


? ? ? ? ? ?}


? ? ? ?}


? ? )*/


?


② /*? DefaultTransactionDefinition def=new DefaultTransactionDefinition();


? ?TransactionStatus status=transactionManager.getTransaction(def);


? ?try


{


? ? ? ? JdbcTemplate jdbcTemplate=new JdbcTemplate(dataSource);


? ? ? ? jdbcTemplate.update(“INSERT INTO book VALUES(1,’gf’,’Mastering Spring’)”);


? ?}


? ?catch(DataAccessException ex)


{


? ? ? ?transactionzManager.rollback(status);


? ? ? ?throw ex;


? ?}


? ? finally


? ?{


? ? ? ?transactionManager.commit(status);


? ?} */


// 使用下面的代碼替換上面注釋掉的部分


? ? ?JdbcTemplate jdbcTemplate=new JdbcTemplate(dataSource);


? ? jdbcTemplate.update(“INSERT INFO book VALUES(1,’gf’,’Mastering Spring’)”);


/ / 與 ② 相比,此段代碼省去了 commit 和 rollback 事務處理語句;與 ① 相比,不必實現 TransactionCallback 接口


}


}


( 2 )配置文件


<?xml version="1.0" encoding="UTF-8"?>


<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN"


?"http://www.springframework.org/dtd/spring-beans.dtd">


<beans>


? ?<!— 設 定dataSource à


? ?<bean id=”dataSource” class=”org.springframework.jdbc.datasource.DriverManagerDataSource”>


? ? ? <!— 使用SQL Server 數 據 庫 à


? ? ? ?<property name=”driverClassName”>


? ? ? ? ? <value>com.microsoft.jdbc.sqlserver.SQLServerDriver</value>


? ? ? ?</property>


? ? ? ? <property name=”url”>


? ? ? ? ? <value>jdbc:Microsoft:sqlserver://localhost:1433/stdb</value>


? ? ? ?</property>


<property name=”name”>


? ? ? ? ? <value>admin</value>


? ? ? ?</property>


<property name=”msg”>


? ? ? ? ? <value>admin</value>


? ? ? ?</property>


? ? </bean>


?


? ? <!— 設定 transactionManager à


? ? <bean id=”transactionManager”


class=”org.springframework.jdbc.datasource.DataSourceTransactionManager”>


? ? ? ? <property name=”dataSource”>


? ? ? ? ? ? <ref bean=”dataSource”/>


? ? ? ? </property>


? ? </bean>


?


? ?<!— 示例中 DAO-->


? ? <bean id=”bookDAO” class=”com.bookDAO”>


? ? ? ? <property name=”dataSource”>


? ? ? ? ? ? <ref bean=”dataSource”/>


? ? ? ? </property>


? ? <!— 與編程式事務處理相比,在 DAO 設置中去掉了這個屬性,把它放到了代理類中。 - à


?


? ? <!—? ? <property name=”transactionManager”>


? ? ? ? ? ? <ref bean=”transactionManager”>


? ? ? ? </property> - à


?


? ?</bean>


? ?<!— 聲明式事務處理 - à


? ?<bean id=”bookDAOProxy” class=”org.springframework.transaction.interceptor.Transation.ProxyFactoryBean”>


? ? ? ? <property name=”transacionManager”>


? ? ? ? ? ? <ref bean=”transacionMaganer”/>


? ? ? ? </property>


<property name=”target”>


? ? ? ? ? ? <ref bean=”bookDAO”/>


? ? ? ? </property>


<property name=”transactionAttributes”>


? ? ? ? ? ? <props>


? ? ? ? ? ? ? ?<!-- 表示對 bookDAO 中的 create 方法進行事務處理,并指明當前沒有事務就新建一個(用 PROPAGATION_REQUIRED 常量來表示的) à


? ? ? ? ? ? ? ? <prop key=”create * ”>PROPAGATION_REQUIRED</prop>


? ? ? ? ? ? </props>


? ? ? ? </property>??


? ?</bean>


</beans>

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

定西市| 大名县| 福清市| 泸水县| 平凉市| 绵阳市| 宜都市| 通化县| 都江堰市| 新乡县| 久治县| 曲松县| 积石山| 剑川县| 横峰县| 河池市| 葵青区| 观塘区| 乌拉特前旗| 卓尼县| 康定县| 康乐县| 会宁县| 偃师市| 安吉县| 万全县| 静海县| 安西县| 永靖县| 谷城县| 建平县| 嘉峪关市| 湛江市| 清水河县| 吐鲁番市| 贵港市| 行唐县| 大埔县| 陇西县| 安徽省| 云阳县|