码迷,mamicode.com
首页 > 其他好文 > 详细

jboss数据源配置

时间:2017-08-08 19:49:41      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:ble   操作   and   cat   details   不同   说明   for   数据   

http://blog.csdn.net/clinique/article/details/7482670

最近项目相关的JBOSS配置开始,留下点什么

 

项目使用的是local-tx-datasource, 网上找了很多资料,都没有明确说明local-tx-datasource和xa-datasource的区别,而且中文的资料太少,去JBOSS Community 查看了一圈找到了有价值的信息。

  1. local-tx-datasouce 能不能参与JTA事务

JBOSS Administration_Configuration_Guide上的解释

<no-tx-datasource>

Does not take part in JTA transactions. The Java.sql.Driveris used.

 

<local-tx-datasource>

Does not support two phase commit. The java.sql.Driveris used. Suitable for a single database or a non-XA-aware resource.

 

<xa-datasource>

Supports two phase commit. The javax.sql.XADataSourcedriver is used.

 

说的比较清楚,local-tx-datasource是可以作为JTA事务参与者的, 只是不支持2PC协议(two-Phase-Commit Protocol)。

 

  1. 一个Application 能不能定义多个local-tx-datasource数据源,什么时候用xa-datasource

 

在Forum上到的讨论结果,JBOSS的开发人员认证了一下说法

You have to usexa-datasources in cases where onetransaction spans multiple datasources. Regardless of wheter Iuse a cluster or not.

 

 

For example amethod consuming a JMS message and manipulating a JPA Entity.

 

对这个说法的解释就是,一个Application可以定义并使用很多个local-tx-datasource数据源,但是一个事务(Transaction)只能操作一个数据源。当你的事务需要同时处理不同的数据源的时候,必须定义为xa-datasource,否则会出现org.jboss.util.NestedSQLException:Could not enlist in transaction on entering meta-aware object 的报错。

jboss数据源配置

标签:ble   操作   and   cat   details   不同   说明   for   数据   

原文地址:http://www.cnblogs.com/jiaozi-li/p/7308239.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!