Hibernate / Hibernate interview questions
Difference between save and persist.
Save()
- Returns generated Id after saving. The return type is serializable.
- Saves the value to DB immediately and keeps track of the entity until the end of the session(I have tried to change the entity values outside of the transaction, it does not show any effect when session commits)
- Does not save the changes to the db outside of the transaction.
- Assigns the generated id to the entity you are persisting
- Session.save() for a detached object will create a new row in the table.
Persist()
- Does not returns generated Id after saving. Its void return type.
- Saves the value to DB immediately and keeps track of the entity until the end of the session.(I have tried to change the entity values outside of the transaction, it does not show any effect when session commits)
- Does not save the changes to the db outside of the transaction.
- Assigns the
generated idto the entity you are persisting session.persist()for a detached object will throwPersistentObjectExceptionas it is not allowed.
More Related questions...