Can anyone tell me whats the advantage of persist() vs save() in Hibernate?
|
|
|
From this forum post
|
|||||
|
|
This question has some good answers about different persistence methods in Hibernate. To answer your question directly, with save() the insert statement is executed immediately regardless of transaction state. It returns the inserted key so you can do something like this:
So use save() if you need an identifier assigned to the persistent instance immediately. With persist(), the insert statement is executed in a transaction, not necessarily immediately. This is preferable in most cases. Use persist() if you don't need the insert to happen out-of-sequence with the transaction and you don't need the inserted key returned. |
||||
|
|