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