Spring事務管理之程式設計式事務場景及使用詳解
阿新 • • 發佈:2019-01-27
改造後的service程式碼<?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:jdbc="http://www.springframework.org/schema/jdbc" xmlns:oxm="http://www.springframework.org/schema/oxm" xmlns:p="http://www.springframework.org/schema/p" 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/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd"> <context:property-placeholder location="classpath:jdbc.properties"/> <!-- 配置資料來源 --> <bean name="dataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init" destroy-method="close"> <property name="driverClassName" value="${jdbc.driver}"/> <property name="url" value="${jdbc.url}" /> <property name="username" value="${jdbc.username}" /> <property name="password" value="${jdbc.password}" /> <!-- 初始化連線大小 --> <property name="initialSize" value="0" /> <!-- 連線池最大使用連線數量 --> <property name="maxActive" value="20" /> <!-- 連線池最大空閒 --> <property name="maxIdle" value="20" /> <!-- 連線池最小空閒 --> <property name="minIdle" value="0" /> <!-- 獲取連線最大等待時間 --> <property name="maxWait" value="60000" /> </bean>
<!-- 配置事務管理器 --> <bean id="transactionManager" class=" org.springframework.jdbc.datasource.DataSourceTransactionManager"> <!-- 參考JDBC進行事務管理的時候首先需要connection.setAutoCommit(false);具體的事務提交應該拿到連線物件, 故在此注入資料來源的資訊 --> <property name="dataSource" ref="dataSource"/> </bean> <!-- 配置事務管理的模板 注入模板是為了簡化事務管理的底層操作 真正進行事務管理的是TransactionManager --> <bean id="transactionTemplate" class="org.springframework.transaction.support.TransactionTemplate"> <!-- 在模板中注入事務管理器 --> <property name="transactionManager" ref="transactionManager"/> </bean> <!-- 配置業務 --> <bean id="accountService" class="AccountServiceImpl"> <property name="accountDao" ref="accountDao"/> <property name="transactionTemplate" ref="transactionTemplate"/> </bean> <!-- 配置資料庫操作Dao層 --> <bean id="accountDao" class="AccountDaoImpl"> <property name="dataSource" ref="dataSource"/> </bean> </beans>