JPA - Detached Entity
About
A detached entity results from:
-
-
-
from clearing the persistence context;
-
or from serializing an entity or otherwise passing an entity by value—e.g., to a separate application tier, through a remote interface, etc.
The inverse of detached is managed ??
The state of detached entity instances is no longer guaranteed to be synchronized with the database state.
Articles Related