In this section we will discuss how session.save() works in Hibernate.
Hibernate session.save() :
save() method is used for saving the object of your persistent class into database table.It inserts object and fails if primary key already exist. session.save() returns the generated identifier (Serializable object)
Syntax : save(Object object) throws HibernateException
Parameters: object - a transient instance of a persistent class
Returns: generated identifier
Throws: HibernateException
Example : In this example we are saving employee record by using session.save() method.
Here is main class code -
package net.roseindia.main;
import net.roseindia.table.Employee;
import net.roseindia.util.HibernateUtil;
import org.hibernate.HibernateException;
import org.hibernate.Session;
import org.hibernate.Transaction;
public class HibernateSessionSave {
public static void main(String[] args) {
Session session = HibernateUtil.getSessionFactory().openSession();
Transaction transaction = null;
try {
transaction = session.beginTransaction();
Employee employee = new Employee();
employee.setName("Lizza");
employee.setSalary(25000);
session.save(employee);
transaction.commit();
System.out.println("Employee record saved");
} catch (HibernateException e) {
transaction.rollback();
e.printStackTrace();
} finally {
session.close();
}
}
}
Output :
Hibernate: insert into employee (date_of_join, name, salary) values (?, ?, ?) Employee record saved
Click here to download complete source code
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Hibernate : Session Save
Post your Comment