对sessionFactory的封装

注意:sessionFactory是重量级对象,最好只创建一次,故我们通常都要对sessionFactory和session做一个封装,做成一个工具类。如下:
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;

public class HibernateUtils {

private static SessionFactory factory;

static {
try {
Configuration cfg = new Configuration().configure();
factory = cfg.buildSessionFactory();
} catch (Exception e) {
e.printStackTrace();
}
}
public static SessionFactory getSessionFactory(){
return factory;
}
public static Session getSession(){
return factory.openSession();
}
public static void closeSession(Session session){
if(session!=null){
if(session.isOpen()){
session.close();
}
}
}
}





在使用JUnit测试工具进行代码的测试时,JUnit中有俩个重要的方法如下:
@Override
protected void setUp() throws Exception {//这个i方法是一个初始化的方法,对于仅需要初始化一次的东西都可以放在这里,在这里只会被初始化一次
// TODO Auto-generated method stub
super.setUp();
}

@Override
protected void tearDown() throws Exception {//这个方法相当于析构方法,用来销毁已经初始化的东西,可以用来统一销毁资源
// TODO Auto-generated method stub
super.tearDown();
}

你可能感兴趣的:(sessionFactory)