Removed State

Removed State

If we perform the operations like remove() or delete() over the POJO object in Persistence state then POJO object will come from Persistence State to Removed State.

In Removed State, Hibernate Software is not aware about POJO object.

In this State, POJO object is not representing any record in Database table.

In Hibernate Applications, Once if POJO object is in Removed State then it is not possible to get back into Persistence State, directly, it must go for Garbage Collection only.

Removed State
Scroll to top