Is possible to move a EJB stateful component with its full internal state among EJB containers after they are deployed?
I.e. I want to creat a system with EJB components that move among different containers. But specification doesn't cover this. So the only way I see now is to create such transportation "manually". But I don't like the ided to invent the wheel.
Do you know some framework that support this. Or is there a simple way to do it for current EJB containers.
The answear is No.
What exists is the idea of state replication, which basically consist in a software (or service provided by the container) that maintains synchronized copies of an stateful ejb within several connected EJB containers (working in Cluster).
The Ejb specification does not specify any thing about how this state replication service should work, therefore, it can vary from server to server. E.g. this link provides some information about JBoss server.