Questions tagged [bitronix]

Bitronix is a company that produces Open Source software and provides services specializing in large-scale deployment and applications integration. Known for their JTA transaction manager called Bitronix Transaction Manager they offer under General Public License.

Bitronix is a company that produces Open Source software and provides services specializing in large-scale deployment and applications integration. Known for their JTA transaction manager called Bitronix Transaction Manager they offer under General Public License.

The Bitronix Transaction Manager (BTM) is a simple but complete implementation of the JTA 1.0.1B API. Its goal is to provide a fully working XA transaction manager that provides all services required by the JTA API while trying to keep the code as simple as possible for easier understanding of the XA semantics.

Sources

Main website -> http://www.bitronix.be/

Bitronix Transaction Manager - > http://docs.codehaus.org/display/BTM/Home

69 questions
1
vote
1 answer

JTA(Bitronix)/JPA/Hibernate - How I can get XAResource from an Entitymanager?

Do you know how I can get XAResource that is automaticaly enlist to my transaction when I use my entity manager ? I use Bitronix, JPA, hibernate, my code works fine, but I don't want to rollback all my XAResources if one specific failed. I just want…
ascott
  • 552
  • 1
  • 5
  • 16
1
vote
2 answers

H2 Database/ Bitronix w/o Java EE

For a simple test of functionality (following a tutorial) I try to setup a primitive JTA environment with Bitronix and H2 in-memory database. The test is supposed to run as Unit Test in a simple Java Application (no Java EE, no Server,…
Alex
  • 1,141
  • 1
  • 13
  • 24
0
votes
0 answers

How to configure multiple distributed transaction using bitronix in spring boot application?

I am having one microservice with multiple datasource. i need to configure distributed transaction in that spring boot application.so, when transaction fail in one datasource it will rollback other DB transaction automatically. So how can we…
0
votes
0 answers

JMS listener processes message twice

we migrated a websphere j2ee app to spring boot. Everything looked great but now we found out that the message listeners are sometimes processing some messages twice. It looks like to me it happens when one message is been processed and not yet…
myborobudur
  • 4,385
  • 8
  • 40
  • 61
0
votes
0 answers

jBPM creating duplicate tasks after timer event : Multiple instances running

We are providing jBPM services to different applications. The service is deployed on multiple pool and multiple instances of the services are running. But recently after updating the Hibernate to 5.1.3+ versions we are getting duplicate tasks. For…
NeverGiveUp161
  • 824
  • 12
  • 33
0
votes
2 answers

Unable to lookup JNDI name [jdbc/jbpm-ds]

I am trying to develop jBPM spring boot application but getting Unable to lookup JNDI name [jdbc/jbpm-ds] error. To achieve so, I have used jbpm-7.36.0.Final, Spring-Boot-2.2.6 and jbpm-spring-boot 7.36.0 Final along with spring boot Bitronix api.…
0
votes
1 answer

Bonita BPM stop working or not response and Disk Queque Length

Currently identified situation. When there was an attempt to create the “internal correspondence” process at the same time, the Bitronix logs prescribed a timeout, but in fact Postgres worked, and the monitoring increased the length of the disk…
0
votes
2 answers

Bitronix Transaction not working with JMS queue

I have a objective of using Bitronix transaction where i should use two resources: Database JMS I have the following java code: package com.mycompany.app; import java.net.URI; import java.net.URISyntaxException; import…
user9578112
  • 31
  • 1
  • 8
0
votes
1 answer

Spring-batch - transactions out of kilter - how do I figure out what's wrong?

Per the spring manual https://spring.io/blog/2011/08/15/configuring-spring-and-jta-without-full-java-ee/ Fortunately, this complexity can be elegantly avoided by using Spring. Per reality: Given a spring batch job whose transactions are wholly…
pojo-guy
  • 966
  • 1
  • 12
  • 39
0
votes
1 answer

Bitronix - JMS and JDBC - Message is dequeued on Exception

I'm trying to integrate Bitronix Transaction Manager in my Spring boot project to manage jdbc and jms transaction together. I have two databases and one ActiveMQ broker for jms. I've got connect the databases in the same transaction but when I tried…
0
votes
1 answer

Bitronix PoolingConnectionFactory making multiple connections that won't close

We are using Bitronix XA as the jta transaction manager in our spring boot app. Problem is that it is making multiple connections that eats up resources on the MQ server. We are using IBM websphere as MQ server. For some reason Bitronix is not…
ramit
  • 21
  • 1
0
votes
1 answer

Spring Boot JTA with Artemis Issue

I am trying to use XA Connection of Apache ActiveMQ Artemis for JMS with Spring Boot. My relevant config looks like this: spring: artemis: host: localhost mode: native jta: bitronix: tm: serverId: spring-btm …
samyem
  • 437
  • 5
  • 16
0
votes
1 answer

Bitronix with DB2 in spring boot

My configuration works fine if I define a datasource bean with driver properties containing driverType as 4. If I let spring boot auto configuration create the data source bean, data source is created with driver type 2 by default as it's hard coded…
l a s
  • 3,836
  • 10
  • 42
  • 61
0
votes
1 answer

Importing 100000+ records from a JSON - slow hit to AT_ENTITY

In the JSON file, there are about 100000 records. I am attempting to write all of them into mantle.product.Product entity. The procedure starts and at about 35000 records, it starts to deteriorate with warning 'Slow hit to…
mrovnanik
  • 123
  • 9
0
votes
1 answer

jBPM 6.5 + Tomcat 8 + Bitronix Transaction + Oracle 11G configuration | Could not commit session java.lang.NullPointerException

I have successfully configured jBPM 6.5 on tomcat 8 + Bitronix transaction manager + Oracle 11G by following the steps provided in this link https://apurvasingh67.wordpress.com/2014/03/03/how-to-install-jbpm6-on-tomcat7-x/ Also, I managed to create…
Arul
  • 75
  • 1
  • 11