其他分享
首页 > 其他分享> > Spring-mybatis 事务

Spring-mybatis 事务

作者:互联网

事务的ACID原则

原子性、一致性、隔离性,持久性

Spring-config.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       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/context http://www.springframework.org/schema/context/spring-context.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">

    <!-- 配置数据源 -->
    <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="com.mysql.cj.jdbc.Driver"></property>
        <property name="url" value="jdbc:mysql://localhost:3306/mybatis?useUnicode=true&amp;useSSL=true&amp;characterEncoding=UTF-8&amp;serverTimezone=UTC"></property>
        <property name="username" value="root"></property>
        <property name="password" value="123456"></property>
    </bean>

    <!-- 创建SqlSessionFactory -->
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="dataSource"></property>
        <!--绑定mybatis配置文件-->
        <!--是configLocation,不是configuration -->
        <property name="configLocation" value="classpath:mybatis-config.xml"/>
        <property name="mapperLocations" value="classpath:mapper/*.xml"></property>
    </bean>

    <!--SqlSessionTemplate就是我們使用的sqlSession-->
    <bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
        <!--只能用构造器注入sqlSessionFactory,应为他没有set方法-->
        <constructor-arg name="sqlSessionFactory" ref="sqlSessionFactory"/>
    </bean>
    <!-- 配置事务管理器 -->
    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource"></property>
    </bean>

    <!--结合aop实现事务的切入-->
    <!--配置事务的通知-->
<tx:advice id="transactionInterceptor" transaction-manager="transactionManager">
    <!--给方法配置事务-->
    <!--配置事务的传播特性,propagation有七种 默认:REQUIRED,没有事务就新建事务-->
    <tx:attributes>
        <tx:method name="query" read-only="true"/>
        <tx:method name="add" propagation="REQUIRED"/>
        <tx:method name="delete" propagation="REQUIRED"/>
        <tx:method name="update" propagation="REQUIRED"/>
        <tx:method name="*"/>
    </tx:attributes>
</tx:advice>

    <aop:config>
        <aop:pointcut id="txPointcut" expression="execution(* com.liu.mapper.*.*(..))"/>
        <aop:advisor advice-ref="transactionInterceptor" pointcut-ref="txPointcut"/>
    </aop:config>

</beans>

propagation的7种策略

REQUIRED:支持当前事务,如果当前没有事务,就新建一个事务。这是最常见的选择。 required
SUPPORTS:支持当前事务,如果当前没有事务,就以非事务方式执行。 supports
MANDATORY:支持当前事务,如果当前没有事务,就抛出异常。 mandatory
REQUIRES_NEW:新建事务,如果当前存在事务,把当前事务挂起。 requires_new
NOT_SUPPORTED:以非事务方式执行操作,如果当前存在事务,就把当前事务挂起。 not_supported
NEVER:以非事务方式执行,如果当前存在事务,则抛出异常。 never
NESTED:支持当前事务,如果当前事务存在,则执行一个嵌套事务,如果当前没有事务,就新建一个事务。

标签:事务,Spring,如果,以非,当前,mybatis,执行
来源: https://www.cnblogs.com/123xian/p/16195122.html