kanojia_chandrashekhar
kanojia_chandrashekhar

Reputation: 197

How to migrate on Object from one JVM to other JVM

can anyone help me in implementing how to migrate the objects from one JVM to other if my application (running on two machines ) is crashed and the other one can take hold from it.

Upvotes: 0

Views: 166

Answers (2)

Mikhail Vladimirov
Mikhail Vladimirov

Reputation: 13890

This functionality is not available in JVM out of the box, but some thirdparty solutions exist. Look at terracotta for example.

Upvotes: 1

maxammann
maxammann

Reputation: 1048

Wouldn't it work if you make your object serializable and send it over a stream to a server for example?

Upvotes: 0

Related Questions