美文网首页
3-Spring配置事务的五种方式

3-Spring配置事务的五种方式

作者: 星海辰光大人 | 来源:发表于2019-08-27 17:15 被阅读0次

    转载自:https://www.jianshu.com/p/93bc4a8ebd0d

    猿码道 已关注

    2017.12.21 11:34 字数 232 阅读 2293评论 5喜欢 13

    Spring配置文件中关于事务配置总是由三个组成部分,分别是 DataSource 、TransactionManager 和 代理机制 这三部分,无论哪种配置方式,一般变化的只是代理机制这部分。

    DataSource、TransactionManager这两部分只是会根据数据访问方式有所变化,比如使用Hibernate进行数据访问时,DataSource实际为SessionFactory,TransactionManager的实现为HibernateTransactionManager。具体如下图:

    根据代理机制的不同,总结了五种Spring事务的配置方式,配置文件如下:

    第一种方式:每个Bean都有一个代理

    <?xml version="1.0"encoding="UTF-8"?>

              http://www.springframework.org/schema/beans/spring-beans-2.5.xsd

              http://www.springframework.org/schema/context

              http://www.springframework.org/schema/context/spring-context-2.5.xsd

              http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd"><!-- 定义事务管理器(声明式的事务) --><!-- 配置DAO --><!-- 配置事务管理器 --><!-- 配置事务属性 -->PROPAGATION_REQUIRED

    第二种方式:所有Bean共享一个代理基类

    <?xml version="1.0"encoding="UTF-8"?>

              http://www.springframework.org/schema/beans/spring-beans-2.5.xsd

              http://www.springframework.org/schema/context

              http://www.springframework.org/schema/context/spring-context-2.5.xsd

              http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd"><!-- 定义事务管理器(声明式的事务) --><!-- 配置事务管理器 --><!-- 配置事务属性 -->PROPAGATION_REQUIRED<!-- 配置DAO -->

    第三种方式:使用拦截器

    <?xml version="1.0"encoding="UTF-8"?>

              http://www.springframework.org/schema/beans/spring-beans-2.5.xsd

              http://www.springframework.org/schema/context

              http://www.springframework.org/schema/context/spring-context-2.5.xsd

              http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd"><!-- 定义事务管理器(声明式的事务) --><!-- 配置事务属性 -->PROPAGATION_REQUIRED*DaotransactionInterceptor<!-- 配置DAO -->

    第四种方式:使用tx标签配置的拦截器

    <?xml version="1.0"encoding="UTF-8"?>

              http://www.springframework.org/schema/beans/spring-beans-2.5.xsd

              http://www.springframework.org/schema/context

              http://www.springframework.org/schema/context/spring-context-2.5.xsd

              http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd

              http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd"><!-- 定义事务管理器(声明式的事务) -->

    第五种方式:全注解

    <?xml version="1.0"encoding="UTF-8"?>

              http://www.springframework.org/schema/beans/spring-beans-2.5.xsd

              http://www.springframework.org/schema/context

              http://www.springframework.org/schema/context/spring-context-2.5.xsd

              http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd

              http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd"><!-- 定义事务管理器(声明式的事务) -->

    此时在DAO上需加上@Transactional注解,如下:

    packagecom.bluesky.spring.dao;importjava.util.List;importorg.hibernate.SessionFactory;importorg.springframework.beans.factory.annotation.Autowired;importorg.springframework.orm.hibernate3.support.HibernateDaoSupport;importorg.springframework.stereotype.Component;importcom.bluesky.spring.domain.User;@Transactional@Component("userDao")publicclassUserDaoImplextendsHibernateDaoSupportimplementsUserDao{publicListlistUsers(){returnthis.getSession().createQuery("from User").list();    }}

    相关文章

      网友评论

          本文标题:3-Spring配置事务的五种方式

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