Hibernate: save vs persist and saveOrUpdate
save and saveOrUpdate or Difference between save and persist are common interview question in any Hibernate interview, much like Difference between get and load method in Hibernate. Hibernate Session class provides couple of ways to save object into database by methods like save , saveOrUpdate and persist . You can use either save() , saveOrUpdate() or persist() based upon your requirement for persisting object into Database. Along with Spring framework Interview questions, Hibernate questions are also quite popular on J2EE interviews because of its status as leading ORM. It’s good to prepare some questions from Hibernate before appearing in any J2EE interviews. One of them is Difference between save , saveOrUpdate and persist, which we will see in this Hibernate article.Difference between save and saveOrUpdate in Hibernate
Main difference between save and saveOrUpdate method is that save() generates a new identifier and INSERT record into database while saveOrUpdate can either INSERT or UPDATE based upon existence of record. Clearly saveOrUpdate is more flexible in terms of use but it involves an extra processing to find out whether record already exists in table or not. In summary save() method saves records into database by INSERT SQL query, Generates a new identifier and return the Serializable identifier back. On the other hand saveOrUpdate() method either INSERT or UPDATE based upon existence of object in database. If persistence object already exists in database then UPDATE SQL will execute and if there is no corresponding object in database than INSERT will run.
Difference between save and persist method in Hibernate
In last section we saw What are difference between save and saveOrUpdate and now we will see Difference on save vs persist method.
- First difference between save and
persistis there return type. Similar to save methodpersistalso INSERT records into database but return type ofpersistis void while return type of save is Serializable object. - Another difference between
persistand save is that both methods make a transient instancepersistent. However,persist() method doesn’t guarantee that the identifier value will be assigned to thepersistent instance immediately, the assignment might happen at flush time. - One more thing which differentiate
persistand save method in Hibernate is that is there behaviour on outside of transaction boundaries.persist() method guarantees that it will not execute an INSERT statement if it is called outside of transaction boundaries.save()method does not guarantee the same, it returns an identifier, and if an INSERT has to be executed to get the identifier (e.g. ‘identity’ generator), this INSERT happens immediately, no matter if you are inside or outside of a transaction. - Fourth difference between
saveandpersistmethod in Hibernate is related to previous difference onsavevspersist. Because of its above behaviour ofpersistmethod outside transaction boundary, its useful in long-running conversations with an extendedSessioncontext. On the other hand save method is not good in a long-running conversation with an extended Session context.
These were some differences between save, saveOrUpdate and persist method of Hibernate. All three method are related to saving Object into database but there behaviour are quite different. Knowledge of save , persist and saveOrUpdate not only helps to decide better use of Hibernate API but also help you to do well in Hibernate interviews.
Don’t forget to share!
Reference: Difference between save vs persist and saveOrUpdate in Hibernate from our JCG partner Javin Paul at the Javarevisited blog.




