原文:http://www.ite/topic/122700

9.17 update:使用NonXADataSourceBean. Mysql在5.0版本和Connecter/J5.0版本后提供了XADatasource支持,如果使用了支持XADatasouce版本,可以参考2楼补充.

最近做的project中遇到要将数据库中的表分布到两台不同的服务器上的Mysql5.0中,project主要使用spring+ibatis。因此需要JTA的支持,但是tomcat不支持,所以就搜索开源的JTA实现。
最开始使用的是JOTM,但是使用中不能自动rollback,无论什么情况都commit。然后看到infoq上一篇文章提到Atomikos Transactions Essentials,Atomikos Transactions Essentials 3.0是Atomikos 开发的核心事务引擎,支持JDBC 以及JMS 的JTA/XA 事务。易于部署,轻量级,同时支持JDBC 以及JMS 。
Atomikos Transactions Essentials现在的版本是3.1.7,可以在http://www.atomikos.com/Main/TransactionsEssentialsDownloadForm 下载,在发布包里的examples文件夹下面有些例子,非常实用,我在使用中参考里面的例子很容易配置成功。先将发布包里面dist目录下的atomikos-util.jar,transactions.jar,transactions-api.jar,transactions-jta.jar copy到项目lib里面, 如果使用hibernate则需要将另外两个hibernate相关的jar页copy到项目里面,spring配置文件如下:

xml 代码
  1. <!-- 第一个数据库 -->
  2. < bean   id = "dataSource"   class = "com.atomikos.jdbc.SimpleDataSourceBean"   init-method = "init"  destroy-method = "close" >
  3. < property   name = "uniqueResourceName" >
  4. < value > mysql/main </ value >
  5. </ property >
  6. < property   name = "xaDataSourceClassName" >
  7. <!-- 使用Mysql XADataSource(mysql>=5.0, Connector/J>=5.0才可以支持XADatasource)-->
  8. < value > com.mysql.jdbc.jdbc2.optional.MysqlXADataSource </ value >
  9. </ property >
  10. < property   name = "xaDataSourceProperties" >
  11. < value > URL =${jdbc.url}; user =${jdbc.username}; password =${jdbc.password} </ value >
  12. </ property >
  13. < property   name = "exclusiveConnectionMode" >
  14. < value > true </ value >
  15. </ property >
  16. < property   name = "connectionPoolSize" >
  17. < value > 3 </ value >
  18. </ property >
  19. < property   name = "validatingQuery" >
  20. < value > SELECT 1 </ value >
  21. </ property >
  22. </ bean >
  23. <!-- 第二个数据库 -->
  24. < bean   id = "dataSourceB"   class = "com.atomikos.jdbc.SimpleDataSourceBean"   init-method = "init"   destroy-method = "close" >
  25. < property   name = "uniqueResourceName" >
  26. < value > mysql/news </ value >
  27. </ property >
  28. < property   name = "xaDataSourceClassName" >
  29. <!-- 使用Mysql XADataSource(mysql>=5.0, Connector/J>=5.0才可以支持XADatasource)-->
  30. < value > com.mysql.jdbc.jdbc2.optional.MysqlXADataSource </ value >
  31. </ property >
  32. < property   name = "xaDataSourceProperties" >
  33. < value > URL =${jdbc.url.b}; user =${jdbc.username.b}; password =${jdbc.password.b} </ value >
  34. </ property >
  35. < property   name = "exclusiveConnectionMode" >
  36. < value > true </ value >
  37. </ property >
  38. < property   name = "connectionPoolSize" >
  39. < value > 3 </ value >
  40. </ property >
  41. < property   name = "validatingQuery" >
  42. < value > SELECT 1 </ value >
  43. </ property >
  44. </ bean >
  45. < bean   id = "lobHandler"   class = "org.springframework.jdbc.support.lob.DefaultLobHandler"   />
  46. <!-- 第一个数据库的sqlMapClient -->
  47. < bean   id = "sqlMapClient"   class = "org.springframework.orm.ibatis.SqlMapClientFactoryBean" >
  48. < property   name = "configLocation" >
  49. <!-- 包含第一个数据库表的map -->
  50. < value > classpath:/sqlmap-config.xml </ value >
  51. </ property >
  52. < property   name = "dataSource"   ref = "dataSource"   />
  53. < property   name = "lobHandler"   ref = "lobHandler"   />
  54. </ bean >
  55. <!-- 第二个数据库的sqlMapClient -->
  56. < bean   id = "sqlMapClientB"   class = "org.springframework.orm.ibatis.SqlMapClientFactoryBean" >
  57. < property   name = "configLocation" >
  58. <!-- 包含第一个数据库表的map -->
  59. < value > classpath:/sqlmap-configb.xml </ value >
  60. </ property >
  61. < property   name = "dataSource"   ref = "dataSourceB"   />
  62. < property   name = "lobHandler"   ref = "lobHandler"   />
  63. </ bean >
  64. <!-- Construct Atomikos UserTransactionManager, needed to configure Spring -->
  65. < bean   id = "atomikosTransactionManager"   class = "com.atomikos.icatch.jta.UserTransactionManager"   init-method = "init"
  66. destroy-method = "close" >
  67. <!--  when close is called, should we force transactions to terminate or not? -->
  68. < property   name = "forceShutdown" >
  69. < value > true </ value >
  70. </ property >
  71. </ bean >
  72. <!-- Also use Atomikos UserTransactionImp, needed to configure Spring  -->
  73. < bean   id = "atomikosUserTransaction"   class = "com.atomikos.icatch.jta.UserTransactionImp" >
  74. < property   name = "transactionTimeout"   value = "240"   />
  75. </ bean >
  76. <!-- Configure the Spring framework to use JTA transactions from Atomikos -->
  77. < bean   id = "transactionManager"   class = "org.springframework.transaction.jta.JtaTransactionManager" >
  78. < property   name = "transactionManager" >
  79. < ref   bean = "atomikosTransactionManager"   />
  80. </ property >
  81. < property   name = "userTransaction" >
  82. < ref   bean = "atomikosUserTransaction"   />
  83. </ property >
  84. </ bean >

事务的配置, 使用了spring2.0的语法,所以将namesapce也帖出来了.

xml 代码
  1. <? xml   version = "1.0"   encoding = "UTF-8" ?>
  2. < beans   xmlns = "http://www.springframework.org/schema/beans"
  3. xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:aop = "http://www.springframework.org/schema/aop"
  5. xmlns:tx = "http://www.springframework.org/schema/tx"
  6. xsi:schemaLocation ="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
  7. http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
  8. http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd"
  9. default-autowire = "byName"   default-lazy-init = "true" >
  10. <!-- 支持 @AspectJ 标记-->
  11. < aop:aspectj-autoproxy />
  12. < aop:config   proxy-target-class = "true" >
  13. < aop:advisor   pointcut = "execution(* *Facade.*(..))"   advice-ref = "txAdvice" />
  14. < aop:advisor   pointcut = "execution(* *Manager.*(..))"   advice-ref = "txAdvice" />
  15. </ aop:config >
  16. < tx:advice   id = "txAdvice" >
  17. < tx:attributes >
  18. < tx:method   name = "get*"   read-only = "true" />
  19. < tx:method   name = "find*"   read-only = "true" />
  20. < tx:method   name = "has*"   read-only = "true" />
  21. < tx:method   name = "locate*"   read-only = "true" />
  22. < tx:method   name = "*" />
  23. </ tx:attributes >
  24. </ tx:advice >
  25. </ beans >

这样配置以后就可以使用分布式事务,测试中出现异常时事务也自动提交。和JOTM相比Atomikos Transactions Essentials更加稳定,它原来是商业项目,现在开源了。象mysql一样卖服务支持的。而且论坛页比较活跃,有问题很快可以解决。

使用Atomikos Transactions Essentials实现多数据源JTA分布式事务--转载的更多相关文章

  1. Springboot+Atomikos+Jpa+Mysql实现JTA分布式事务

    1 前言 之前整理了一个spring+jotm实现的分布式事务实现,但是听说spring3.X后不再支持jotm了,jotm也有好几年没更新了,所以今天整理springboot+Atomikos+jp ...

  2. springboot整合多数据源解决分布式事务

    一.前言        springboot整合多数据源解决分布式事务.             1.多数据源采用分包策略              2.全局分布式事务管理:jta-atomikos. ...

  3. atomikos实现多数据源支持分布式事务管理(spring、tomcat、JTA)

    原文链接:http://iteye.blog.163.com/blog/static/1863080962012102945116222/   Atomikos TransactionsEssenti ...

  4. Spring 3.0 + Atomikos构建jta分布式事务

    Spring3.0已经不再支持jtom了,不过我们可以用第三方开源软件atomikos(http://www.atomikos.com/)来实现.Atomikos是目前在分布式事务管理中做得相当不错的 ...

  5. JTA 分布式事务

    什么是JTA - 2009-07-25 18:31:06|  分类: 技术文章|举报|字号 订阅     什么是JTA? Java Transaction API(Java事务API) (JTA)Ja ...

  6. SpringCloud微服务实战——搭建企业级开发框架(二十七):集成多数据源+Seata分布式事务+读写分离+分库分表

    读写分离:为了确保数据库产品的稳定性,很多数据库拥有双机热备功能.也就是,第一台数据库服务器,是对外提供增删改业务的生产服务器:第二台数据库服务器,主要进行读的操作. 目前有多种方式实现读写分离,一种 ...

  7. Springboot + Atomikos + Druid + Mysql 实现JTA分布式事务

    DataSource 配置 package com.cheng.dynamic.config; import java.util.Properties; import javax.sql.DataSo ...

  8. spring+jotm+ibatis+mysql实现JTA分布式事务

    1 环境 1.1 软件环境  spring-framework-2.5.6.SEC01-with-dependencies.zip ibatis-2.3.4 ow2-jotm-dist-2.1.4-b ...

  9. SpringBoot整合mybatis多数据源,支持分布式事务

    编码工具:IDEA SpringBoot版本:2.0.1 JDK版本:1.8 1.使用IDEA构建一个Maven工程 ,添加依赖: <?xml version="1.0" e ...

随机推荐

  1. ORACLE:profile的管理

    PROFILE的管理(资源文件)      当需要设置资源限制时,必须设置数据库系统启动参数RESOURCE_LIMIT,此参数默认值为FALSE      可以使用如下命令来启动当前资源限制:    ...

  2. RMAN 备份与恢复深入解析(二)

    RMAN 备份与恢复深入解析(一)  http://space.itpub.net/26686207/viewspace-760869 更多精彩内容尽在 www.leonarding.com < ...

  3. 自适应的CSS代码片段(常用)

    /* Smartphones (portrait and landscape) ----------- */ @media only screen and (min-device-width : 32 ...

  4. NFA和DFA区别

    一个数据块的访问时间等于寻道时间.旋转延迟时间和数据传输时间三者之和: NFA和DFA区别: 一个状态如A,遇0可以转换到下一个状态B或C,因为选择多所以不确定,因此为不确定的有限自动机: 一个状态还 ...

  5. InnoDB关键特性之doublewrite

    部分写失效 想象这么一个场景,当数据库正在从内存向磁盘写一个数据页时,数据库宕机,从而导致这个页只写了部分数据,这就是部分写失效,它会导致数据丢失.这时是无法通过重做日志恢复的,因为重做日志记录的是对 ...

  6. toastr

    $(function(){     //参数设置,若用默认值可以省略以下面代     toastr.options = {         "closeButton": false ...

  7. win7远程链接ubuntu 桌面版

    1.安装ubuntu 使用vagrant 添加了一个ubuntu12.04(xmanager好像只能控制最高这个版本,14.04没成功过) 2.安装xmanager 4 3.修改ubutu配置文件 s ...

  8. Ubuntu 设置简单密码,复杂度太高

    Ubuntu 中创建的用户密码复杂度很高,如果想设置1234 ,或者与账户名相同的密码时,SystemSetting 中是不可以设置的. 可以通过简单的命令来设置 其中 anyongfei 是账户名 ...

  9. nyoj 44 子串和

    子串和 时间限制:5000 ms  |  内存限制:65535 KB 难度:3   描述 给定一整型数列{a1,a2...,an},找出连续非空子串{ax,ax+1,...,ay},使得该子序列的和最 ...

  10. [Objective-c 基础 - 2.7] 构造方法、重写init方法

    A.id 万能指针,可以指向任何对象,实质是NSObject的指针,使用的时候不用加上*   B.NSObject中得类方法new 1.完整地创建一个可用对象步骤 (1)分配存储空间 + alloc ...