Java - transaction management framework

Developing in a Microservices Environment I have a process that I can define as a transaction.
I started developing a transaction model that saves the raw data, validates it, and reports the status on request (like a progress bar in the UI).
I was wondering if there are FW transaction managers or java best practices that I can use.

Thank.

+3


source to share


1 answer


There is a Java EE Transaction API (JTA) that sets the standard.



As far as the implementations are concerned, there are several, you can see the open source list in the central maven repository .

+2


source







All Articles