InterviewSolution
Saved Bookmarks
| 1. |
What is the difference between save() and persist() methods of session object? |
|
Answer» session.save saves the object and returns the id of the instance whereas persist do not return anything after saving the instance. |
|