美文网首页
Spring配置事务管理器的两种方法(XML&annotatio

Spring配置事务管理器的两种方法(XML&annotatio

作者: SevenChou | 来源:发表于2018-11-08 16:08 被阅读0次

1.基于XML的配置

1.1 约束导入:

<?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">
</beans>

1.2 配置标签:

<!-- 配置数据源 -->
<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/spring"></property>
    <property name="username" value="zhou"></property>
    <property name="password" value="zhou"></property>
</bean>

<!-- 配置一个事务管理器 -->
<bean id="transactionManager"
      class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<!-- 注入 DataSource -->
        <property name="dataSource" ref="dataSource"></property>
</bean>

<!-- 事务的配置 -->
<tx:advice id="txAdvice" transaction-manager="transactionManager"></tx:advice>

<!--在 tx:advice 标签内部 配置事务的属性 -->
<tx:attributes>
    <tx:method name="*" read-only="false" propagation="REQUIRED"/>
    <tx:method name="find*" read-only="true" propagation="SUPPORTS"/>
</tx:attributes>

<!-- 配置 aop -->
<aop:config>
    <!-- 配置切入点表达式 -->
    <aop:pointcut expression="execution(* com.xxx.service.impl.*.*(..))"id="pt1"/>
</aop:config>

<!-- 在 aop:config 标签内部: 建立事务的通知和切入点表达式的关系 -->
<aop:advisor advice-ref="txAdvice" pointcut-ref="pt1"/>

2.基于注解的配置:

2.1 配置文件导入约束并配置扫描的包

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    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">
    <!-- 配置 spring 创建容器时要扫描的包 -->
    <context:component-scan base-package="com.xxx"></context:component-scan>
    <!-- 配置 JdbcTemplate-->
    <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
        <property name="dataSource" ref="dataSource"></property>
    </bean>
    <!-- 配置 spring 提供的内置数据源 -->
    <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/spring"></property>
        <property name="username" value="zhou"></property>
        <property name="password" value="zhou"></property>
    </bean>
</beans>
<!-- 开启 spring 对注解事务的支持 -->
<tx:annotation-driven transaction-manager="transactionManager"/>

2.2 核心注解

@Transactional注解 :配置在类上的话,类中的所有方法都被增强,如果配置在方法上,只作用于此方法的增强。
读写型事务配置(一般用于非查询方法)
@Transactional(readOnly=false,propagation=Propagation.REQUIRED)
只读型事务配置(一般用于查询方法)
@Transactional(readOnly=true,propagation=Propagation.SUPPORTS)

相关文章

  • Spring配置事务管理器的两种方法(XML&annotatio

    1.基于XML的配置 1.1 约束导入: 1.2 配置标签: 2.基于注解的配置: 2.1 配置文件导入约束并配置...

  • 引入spring事务管理

    1.1 为什么用spring事务管理? 在没有spring事务管理器之前,java开发者通常有两种事务管理器可供选...

  • Spring框架的事务配置

    Spring框架的事务配置 手动编码(复杂没看) xml配置(重点) 步骤: 配置事务管理器,系统自带的类 配置事...

  • Spring Boot事务配置

    配置类贴上支持事务的注解 配置事务管理器 方式一: Spring Boot会自动注入DataSourceTrans...

  • spring事务

    1、spring事务管理器PlatformTransactionManager 1.1、没有spring事务管理器...

  • Java知识点总结(二)

    AOP的两种通用配置 AspectJ的xml:1.配置事务管理器2.配置事务的通知(事务的增强)

  • Spring事务管理方式

    重点掌握xml配置和注解配置两种 一. 编码式(了解) 配置事务管理器 配置事务管理的模板 需要在业务层注入事务管...

  • 关于事务的思考

    Spring对于事务的支持 Spring事务接口 Spring事务管理器 Spring并不直接管理事务,而是提供多...

  • Spring源码之事务解析

    spring处理事务的两种方式,xml,配置类 配置类+@EnableTransactionManagement ...

  • 2019-01-06 Spring 事务

    1.事务的特性 原子性 隔离性 一致性 持久性 Spring中采用注解的方式管理事务 A.配置事务管理器 B.配置...

网友评论

      本文标题:Spring配置事务管理器的两种方法(XML&annotatio

      本文链接:https://www.haomeiwen.com/subject/wypwxqtx.html