基於xmlmysql
<?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: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="cn.itcast.service.impl.AccountServiceImpl"> <property name="accountDao" ref="accountDao"></property> </bean> <!-- 配置帳戶的持久層--> <bean id="accountDao" class="cn.itcast.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="root"></property> </bean> <!-- spring中基於XML的聲明式事務控制配置步驟 一、配置事務管理器 二、配置事務的通知 此時咱們須要導入事務的約束 tx名稱空間和約束,同時也須要aop的 使用tx:advice標籤配置事務通知 屬性: id:給事務通知起一個惟一標識 transaction-manager:給事務通知提供一個事務管理器引用 三、配置AOP中的通用切入點表達式 四、創建事務通知和切入點表達式的對應關係 五、配置事務的屬性 是在事務的通知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(* cn.itcast.service.impl.*.*(..))"></aop:pointcut> <!--創建切入點表達式和事務通知的對應關係 --> <aop:advisor advice-ref="txAdvice" pointcut-ref="pt1"></aop:advisor> </aop:config> </beans>
基於註解的spring