GeekMantra

How we communicated with hibernate, Session Factory and Session

Session session = HibernateUtil.getSessionFactory().getCurrentSession();
    Transaction transaction = session.beginTransaction();
  
  Long id = (Long) session.save(p); //one of the CRUD operation
    transaction.commit();

Hibernate Advance

Hibernate Data Types

Hibernate Data Types