Java tutorial
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package br.edu.ifrs.restinga.modulorh.dao; import org.hibernate.SessionFactory; import org.hibernate.cfg.Configuration; public class HibernateUtil { private static SessionFactory sessionfactory; public static SessionFactory getSessionFactory() { if (sessionfactory == null) { Configuration ac = new Configuration(); ac.configure(); sessionfactory = ac.buildSessionFactory(); } return sessionfactory; } }