Reputation: 387
What a "detached entity" means? How is it possible to convert a managed entity to a detached entity during a transaction?
Upvotes: 35
Views: 32493
Reputation: 18224
A detached entity is an entity whose state must not be reflected by the JPA provider.
In other words, if you change its state (i.e. through setters methods) these changes will not be saved to the underlying database, as the JPA provider doesn't have to "observe" such entities.
If entity E1 is a managed entity you can make it detached invoking (very reasonable named) method EntityManager#detach(E1)
. You can also use EntityManager#clear()
which will clear whole PersistenceContext and effectively making all managed entities detached.
Upvotes: 36
Reputation: 6158
actually, what is meant by a detached entity?
Detached entity objects are objects in a special state in which they are not managed by any EntityManager
but still represent objects in the database. Read more source
and How it is possible convert a managed entity to a detached entity during a transaction?
Upvotes: 10