Sharing transactions between web applications, which run in the same cluster

Posted by pihentagy on Stack Overflow See other posts from Stack Overflow or by pihentagy
Published on 2010-04-27T15:41:58Z Indexed on 2010/04/27 15:53 UTC
Read the original article Hit count: 656

Filed under:
|
|
|

We (will) have the following architecture:

  • Base.war will be a self-contained spring-hibernate application
  • All applications will run under Glassfish, and may be clustered
  • E1.war will sit on top of Base.war, extending it's functionality
  • There could be further extensions (E2.war, E3.war, …) sitting on top of Base.war
  • Either wars could start a transaction, and transactions could span between wars
  • Without shutting down Base.war, or any other Ex.war, it should be possible to upgrade an Ey.war

Is there a solution for this with spring-hibernate-glassfish environment?

© Stack Overflow or respective owner

Related posts about java

Related posts about spring