What does persistence object means in Hibernate architecture?

后端 未结 6 1844
我寻月下人不归
我寻月下人不归 2021-01-30 06:55

Hibernate is a persistence framework which is used to persist data from Java environment to database.

I am so confused.. if we persist a

6条回答
  •  北海茫月
    2021-01-30 07:31

    Firstly you need to understand the three states of the Hibernate object i.e Transient, Persistent, Detached.

    Transient state: An object is in transient state if it just has been instantiated using the new operator and there is no reference of it in the database i.e it does not represent any row in the database.

    Persistent state: An object is in the persistent state if it has some reference in the database i.e it represent some row in the database and identifier value is assigned to it. If any changes are made to the object then hibernate will detect those changes and effects will be there in the database that is why the name Persistent. These changes are made when session is closed. A persistent object is in the session scope.

    Detached state: An object that has been persistent and is no longer in the session scope. The hibernate will not detect any changes made to this object. It can be connected to the session again to make it persistent again.

提交回复
热议问题