spring學習系列 --- 事務管理
阿新 • • 發佈:2018-12-13
1、事務管理 ---- 主要是保證事務執行過程中,輸入的資料不出現問題
在開發過程中,就是可能會出現程式執行中斷,原因可能是程式bug,一塊程式想實現一個完整的功能,要是無法全部完成,反倒是會造成錯誤,所以希望這塊程式碼要麼是執行完成,要麼就是全部沒有執行,即出現執行部分的情況,出現程式碼回滾。
事務是一系列的動作,它們綜合在一起才是一個完整的工作單元,這些動作必須全部完成,如果有一個失敗的話,那麼事務就會回滾到最開始的狀態,彷彿什麼都沒發生過一樣。
2、事務的4個特性
- 原子性(Atomicity):事務是一個原子操作,由一系列動作組成。事務的原子性確保動作要麼全部完成,要麼完全不起作用。
- 一致性(Consistency):一旦事務完成(不管成功還是失敗),系統必須確保它所建模的業務處於一致的狀態,而不會是部分完成部分失敗。在現實中的資料不應該被破壞。
- 隔離性(Isolation):可能有許多事務會同時處理相同的資料,因此每個事務都應該與其他事務隔離開來,防止資料損壞。
- 永續性(Durability):一旦事務完成,無論發生什麼系統錯誤,它的結果都不應該受到影響,這樣就能從任何系統崩潰中恢復過來。通常情況下,事務的結果被寫到持久化儲存器中。
3、需要配置事務
xmlns:tx 可以和切面程式設計 AOP 結合起來,達到好的效果,這樣就可以不用將事務的程式碼封裝到業務程式碼裡面去
4、大致需要配置如下
配置資料庫、配置jdbc事務管理器、配置事務通知、配置事務切面 ---- 這個是 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:aop="http://www.springframework.org/schema/aop" xmlns:context="http://www.springframework.org/schema/context" 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/aop http://www.springframework.org/schema/aop/spring-aop.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"> <!--資料來源配置--> <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> <property name="driverClassName" value="${jdbc.driverClassName}"/> <property name="url" value="${jdbc.url}"/> <property name="username" value="${jdbc.username}"/> <property name="password" value="${jdbc.password}"/> </bean> <!-- jdbc事務管理器;注入資料來源--> <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource"></property> </bean> <!-- 配置事務通知 --> <tx:advice id="txAdvice" transaction-manager="transactionManager"> <tx:attributes> <!--<tx:method name="insert*" propagation="REQUIRED" /> --> <!--<tx:method name="update*" propagation="REQUIRED" /> --> <!--<tx:method name="edit*" propagation="REQUIRED" /> --> <!--<tx:method name="save*" propagation="REQUIRED" /> --> <!--<tx:method name="add*" propagation="REQUIRED" /> --> <!--<tx:method name="new*" propagation="REQUIRED" /> --> <!--<tx:method name="set*" propagation="REQUIRED" /> --> <!--<tx:method name="remove*" propagation="REQUIRED" /> --> <!--<tx:method name="delete*" propagation="REQUIRED" /> --> <!--<tx:method name="change*" propagation="REQUIRED" /> --> <!--<tx:method name="get*" propagation="REQUIRED" read-only="true" /> --> <!--<tx:method name="find*" propagation="REQUIRED" read-only="true" /> --> <!--<tx:method name="load*" propagation="REQUIRED" read-only="true" /> --> <tx:method name="*" propagation="REQUIRED" /> </tx:attributes> </tx:advice> <!-- 配置事務切面 --> <aop:config> <!-- 配置切點 --> <aop:pointcut id="serviceMethod" expression="execution(* com.java1234.service.*.*(..))" /> <!-- 配置事務通知 --> <aop:advisor advice-ref="txAdvice" pointcut-ref="serviceMethod"/> </aop:config> <context:property-placeholder location="jdbc.properties"/> <!--配置 jdbcTemplate 模版,這個是可以對 資料庫進行操作的工具,類似資料庫的查詢、插入、刪除之類的操作--> <bean id="namedParameterJdbcTemplate" class="org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate"> <constructor-arg ref="dataSource"></constructor-arg> </bean> <bean id="bankDao" class="com.java1234.dao.impl.BankDaoImpl"> <property name="namedParameterJdbcTemplate" ref="namedParameterJdbcTemplate"></property> </bean> <bean id="bankService" class="com.java1234.service.impl.BankServiceImpl"> <property name="bankDao" ref="bankDao"></property> </bean> </beans>
5、註解式事務管理器
@Transactional 在類或者方法上,註釋一下就可以實現事務管理器的功能
<?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:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
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/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<!--資料來源配置-->
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
<property name="driverClassName" value="${jdbc.driverClassName}"/>
<property name="url" value="${jdbc.url}"/>
<property name="username" value="${jdbc.username}"/>
<property name="password" value="${jdbc.password}"/>
</bean>
<!-- jdbc事務管理器;注入資料來源-->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"></property>
</bean>
<tx:annotation-driven transaction-manager="transactionManager"/>
<!--<!– 配置事務通知 –>-->
<!--<tx:advice id="txAdvice" transaction-manager="transactionManager">-->
<!--<tx:attributes> -->
<!--<!–<tx:method name="insert*" propagation="REQUIRED" /> –>-->
<!--<!–<tx:method name="update*" propagation="REQUIRED" /> –>-->
<!--<!–<tx:method name="edit*" propagation="REQUIRED" /> –>-->
<!--<!–<tx:method name="save*" propagation="REQUIRED" /> –>-->
<!--<!–<tx:method name="add*" propagation="REQUIRED" /> –>-->
<!--<!–<tx:method name="new*" propagation="REQUIRED" /> –>-->
<!--<!–<tx:method name="set*" propagation="REQUIRED" /> –>-->
<!--<!–<tx:method name="remove*" propagation="REQUIRED" /> –>-->
<!--<!–<tx:method name="delete*" propagation="REQUIRED" /> –>-->
<!--<!–<tx:method name="change*" propagation="REQUIRED" /> –>-->
<!--<!–<tx:method name="get*" propagation="REQUIRED" read-only="true" /> –>-->
<!--<!–<tx:method name="find*" propagation="REQUIRED" read-only="true" /> –>-->
<!--<!–<tx:method name="load*" propagation="REQUIRED" read-only="true" /> –>-->
<!--<tx:method name="*" propagation="REQUIRED" />-->
<!--</tx:attributes> -->
<!--</tx:advice>-->
<!--<!– 配置事務切面 –>-->
<!--<aop:config>-->
<!--<!– 配置切點 –>-->
<!--<aop:pointcut id="serviceMethod" expression="execution(* com.java1234.service.*.*(..))" />-->
<!--<!– 配置事務通知 –>-->
<!--<aop:advisor advice-ref="txAdvice" pointcut-ref="serviceMethod"/>-->
<!--</aop:config>-->
<!---->
<context:property-placeholder location="jdbc.properties"/>
<!--配置 jdbcTemplate 模版,這個是可以對 資料庫進行操作的工具,類似資料庫的查詢、插入、刪除之類的操作-->
<bean id="namedParameterJdbcTemplate" class="org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate">
<constructor-arg ref="dataSource"></constructor-arg>
</bean>
<bean id="bankDao" class="com.java1234.dao.impl.BankDaoImpl">
<property name="namedParameterJdbcTemplate" ref="namedParameterJdbcTemplate"></property>
</bean>
<bean id="bankService" class="com.java1234.service.impl.BankServiceImpl">
<property name="bankDao" ref="bankDao"></property>
</bean>
</beans>