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.

Leave a Comment