spring基於xml的宣告式事務控制的使用步驟
* spring宣告式事務管理引入的原因: 之前對事務的控制是用的動態代理,然後引入到AOP中配置這些事務管理的類,但都是我們手寫的。 其實spring內部已經寫好這些程式碼,這樣做就是為了引入宣告式事務管理, * spring中基於xml的宣告式事務控制步驟: 1. 配置事務管理器 DatasourceTransactionManager 2. 配置事務的通知 xml檔案頭內容換成xml:tx的名稱空間和約束,同時也需要aop的 使用tx:advice標籤配置事務通知 屬性:id:唯一標誌 transaction-manager:給事務通知提供一個事務管理器引用 3. 配置AOP中的通用切入點表示式 先配置aop:config 在配置aop:pointcut 4. 建立事務通知和切入點表示式的對應關係 在切入點表示式下面配置aop:advicor 5. 配合事務的屬性 在通知tx:advice標籤內部配<tx:attributes></tx:attributes> 在其內部配置<tx:method />其屬性: isolation="" 用於指定事物的隔離級別 no-rollback-for="" 用於指定一個異常,當產生該異常時,事務不回滾,產生其他異常事務回滾,沒有預設值,表示任何異常都回滾 * propagation=""用於指定四五的傳播行為。預設值是REQUIRED,表示一點會有事務,增刪改的選擇。查詢方法可選擇SUPPORTS * read-only="" 表示事務是否只讀,只有查詢方法才能設定為true,預設是false表示讀寫。 rollback-for=""用於指定一個異常,當產生該異常時,事務回滾,產生其他異常事務不回滾,沒有預設值,表示任何異常都回滾 timeout="" 用於指定四五的超時時間,預設是-1 表示永不超時。如果指定,以秒為單位
程式碼:
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd"> <!-- 配置業務層--> <bean id="accountService" class="com.itheima.service.impl.AccountServiceImpl"> <property name="accountDao" ref="accountDao"></property> </bean> <!-- 配置賬戶的持久層--> <bean id="accountDao" class="com.itheima.dao.impl.AccountDaoImpl"> <property name="dataSource" ref="dataSource"></property> </bean> <!-- 配置資料來源--> <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> <property name="driverClassName" value="com.mysql.jdbc.Driver"></property> <property name="url" value="jdbc:mysql://localhost:3306/eesy"></property> <property name="username" value="root"></property> <property name="password" value="1234"></property> </bean> <!-- spring中基於XML的宣告式事務控制配置步驟 1、配置事務管理器 2、配置事務的通知 此時我們需要匯入事務的約束 tx名稱空間和約束,同時也需要aop的 使用tx:advice標籤配置事務通知 屬性: id:給事務通知起一個唯一標識 transaction-manager:給事務通知提供一個事務管理器引用 3、配置AOP中的通用切入點表示式 4、建立事務通知和切入點表示式的對應關係 5、配置事務的屬性 是在事務的通知tx:advice標籤的內部 --> <!-- 配置事務管理器 --> <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource"></property> </bean> <!-- 配置事務的通知--> <tx:advice id="txAdvice" transaction-manager="transactionManager"> <!-- 配置事務的屬性 isolation:用於指定事務的隔離級別。預設值是DEFAULT,表示使用資料庫的預設隔離級別。 propagation:用於指定事務的傳播行為。預設值是REQUIRED,表示一定會有事務,增刪改的選擇。查詢方法可以選擇SUPPORTS。 read-only:用於指定事務是否只讀。只有查詢方法才能設定為true。預設值是false,表示讀寫。 timeout:用於指定事務的超時時間,預設值是-1,表示永不超時。如果指定了數值,以秒為單位。 rollback-for:用於指定一個異常,當產生該異常時,事務回滾,產生其他異常時,事務不回滾。沒有預設值。表示任何異常都回滾。 no-rollback-for:用於指定一個異常,當產生該異常時,事務不回滾,產生其他異常時事務回滾。沒有預設值。表示任何異常都回滾。 --> <tx:attributes> <tx:method name="*" propagation="REQUIRED" read-only="false"/> <tx:method name="find*" propagation="SUPPORTS" read-only="true"></tx:method> </tx:attributes> </tx:advice> <!-- 配置aop--> <aop:config> <!-- 配置切入點表示式--> <aop:pointcut id="pt1" expression="execution(* com.itheima.service.impl.*.*(..))"></aop:pointcut> <!--建立切入點表示式和事務通知的對應關係 --> <aop:advisor advice-ref="txAdvice" pointcut-ref="pt1"></aop:advisor> </aop:config>
** spring中基於註解的宣告式事務控制步驟: 1. 配置事務管理器 2. 開啟spring對註解事務的支援: <tx:annotation-driven transaction-manager="事務管理器id"><> 3. 在需要事務支援的地方使用@Transaction註解 屬性: * propagation="" * read-only="" ... <推薦xml> * EnableTransactionManagement 開始spring註解事務的支援