Detached Entity and Managed Entity Detached Entity and Managed Entity database database

Detached Entity and Managed Entity


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.


Here you can read about JPA entity lifecycle.

Entity can be detached after serializing or closing of Persistence Context, for example.


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?

Read here