Spring JPA transaction in clustered environment

I am using Spring-JPA

in my application. I am using the container management option for EntityManager

and using the transaction manager JTA

.

this application is Java EE

deployed in a clustered environment JBoss

, will transaction isolation be performed?

In other words, will two different requests on different JBoss nodes and two different requests processed on the same JBoss node differently in an isolated perspective?

+3


source to share


1 answer


The behavior and limitations of transaction isolation vary by database provider. Now if you are using Oracle RAC I have not seen a problem, but on a MYSQL instance this is a problem.



+1


source







All Articles