transactionmanager

What is a good open source Java SE JTA TransactionManager implementation? [closed]

杀马特。学长 韩版系。学妹 提交于 2019-11-27 11:48:24
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . Basically, what it says on the tin; I need a JTA implementation useable in a Java SE application, ideally one that doesn't carry too much of a framework burden with it. 回答1: I recommend Bitronix. Before using any other transaction manager, I recommend thorough testing. Tests like killing power to various

Spring - Is it possible to use multiple transaction managers in the same application?

て烟熏妆下的殇ゞ 提交于 2019-11-26 21:41:53
I'm new to Spring and I'm wondering if its possible to use numerous transaction managers in the same application? I have two data access layers - one for both of the databases. I'm wondering, how do you go about using one transaction managers for one layer and different transaction manager for the other layer. I don't need to perform transactions across both databases - yet. But I do need perform transactions on each database individually. I've created an image to help outline my problem: Here is my application context configuration: <beans xmlns="http://www.springframework.org/schema/beans"

Spring - Is it possible to use multiple transaction managers in the same application?

柔情痞子 提交于 2019-11-26 08:02:52
问题 I\'m new to Spring and I\'m wondering if its possible to use numerous transaction managers in the same application? I have two data access layers - one for both of the databases. I\'m wondering, how do you go about using one transaction managers for one layer and different transaction manager for the other layer. I don\'t need to perform transactions across both databases - yet. But I do need perform transactions on each database individually. I\'ve created an image to help outline my problem