Synchronization between hibernate running locally and on a server
Posted
by linead
on Stack Overflow
See other posts from Stack Overflow
or by linead
Published on 2010-02-11T04:35:35Z
Indexed on
2010/05/01
0:47 UTC
Read the original article
Hit count: 287
Is there an easy way using a library to facilitate the synchronization of two hibernate instances. One running locally on a client and one running on a central server exposed via a web service.
So Client tracks changes it makes, pushes them to the Server. The server ensures that the clients is not updating out of sync objects and stores the clients changes.
The Client can also sync with the Server so that it can see the changes made by other clients.
The idea is that the client can be run offline, without access to the server and only come online to synchronize when needed.
© Stack Overflow or respective owner