在開發項目中,事務處理是重中之重,那麼在應用SSM框架的項目中,事務該怎麼配置? 是一個一個接口的敲上@Transactional 註解? 固然不是,Spring的AOP處理,很好的幫咱們解決了這個問題; 咱們就來看看Spring中怎麼配置全局事務:java
<?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:p="http://www.springframework.org/schema/p" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd "> <context:component-scan base-package="com.xt.shop.base.service.impl" /> <context:annotation-config /> <tx:annotation-driven /> <!-- 讀取JDBC的配置--> <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations" value="classpath:jdbc.properties"/> </bean> <!-- 配置數據源,從上面配置文件讀取--> <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init" destroy-method="close"> <property name="driverClassName" value="com.mysql.jdbc.Driver" /> <property name="url" value="${jdbc.url}" /> <property name="username" value="${jdbc.username}" /> <property name="password" value="${jdbc.password}" /> </bean> <!-- MyBatis_Plus配置: --> <bean id="sqlSessionFactory" class="com.baomidou.mybatisplus.spring.MybatisSqlSessionFactoryBean"> <property name="dataSource" ref="dataSource"/> <!-- 配置掃描實體的包路徑 --> <property name="typeAliasesPackage" value="com.xt.shop.base.entity"/> <!-- 配置掃描 MAPPER XML的位置 --> <property name="mapperLocations" value="classpath:mybatis/mapper/*.xml"/> <!-- 配置 MyBatis配置文件的位置 --> <property name="configLocation" value="classpath:mybatis/mybatis-config.xml"/> <property name="globalConfig" ref="globalConfig"/> <!-- 配置插件 --> <property name="plugins"> <array> <!-- 分頁插件配置 --> <bean id="paginationInterceptor" class="com.baomidou.mybatisplus.plugins.PaginationInterceptor"> <property name="dialectType" value="mysql"/> <property name="optimizeType" value="aliDruid" /> </bean> </array> </property> </bean> <!-- MP 全局配置注入 --> <bean id="globalConfig" class="com.baomidou.mybatisplus.entity.GlobalConfiguration"> <property name="idType" value="0"/> <property name="dbColumnUnderline" value="true"/> </bean> <!-- 配置掃描MAPPER接口的包路徑 --> <bean id="mapperScannerConfigurer" class="org.mybatis.spring.mapper.MapperScannerConfigurer"> <property name="basePackage" value="com.xt.shop.base.mapper"/> <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/> </bean> <!-- 事務處理 --> <bean id= "transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource"/> </bean> <!-- 事務註解:開啓註解支持--> <tx:annotation-driven transaction-manager="transactionManager" proxy-target-class="true"/> <!-- 全局AOP事物,除get,list,select,query開頭的方法外,都處在事物當中 --> <tx:advice id="txAdvice" transaction-manager="transactionManager"> <tx:attributes> <tx:method name="select*" propagation="REQUIRED" read-only="true" /> <tx:method name="get*" propagation="REQUIRED" read-only="true" /> <tx:method name="list*" propagation="REQUIRED" read-only="true" /> <tx:method name="query*" propagation="REQUIRED" read-only="true" /> <tx:method name="*" propagation="REQUIRED" read-only="false" rollback-for="java.lang.Exception"/> </tx:attributes> </tx:advice> <!-- 配置事務切面 到Service層 --> <aop:config expose-proxy="true" proxy-target-class="true" > <aop:advisor advice-ref="txAdvice" pointcut="execution(* com.xt.shop.base.service..*.*(..))"/> </aop:config> </beans>
因爲習慣了使用MyBatis-Plus,因此我這裏的使用MyBatis-Plus,不過MyBatis的配置方式都是相同的;mysql
事務處理之這塊須要注意的是:spring
<!-- 配置事務切面 到Service層 --> <aop:config expose-proxy="true" proxy-target-class="true" > <aop:advisor advice-ref="txAdvice" pointcut="execution(* com.xt.shop.base.service..*.*(..))"/> </aop:config>
我當時就是由於 service 後面少寫了一個點,就致使事務回滾一直不生效; 這一塊主要應用了Mybatis動態代理的方式來鎖定須要處理事務的接口,若是路徑有誤,那根本就代理不了,事務也不會生效;sql
還有, 事務層是配置在代碼的service層,因此,業務只有寫到service層纔會生效,而在controller層處理業務是不會發生事務的; 因此咱們在寫項目的時候,最好全部的業務都放在service中處理,養成良好的編碼習慣;mybatis