封装hibernate
Posted 技术的深奥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了封装hibernate相关的知识,希望对你有一定的参考价值。
private static SessionFactory sf;
static{
Configuration cfg=new Configuration().configure();
ServiceRegistry sr=new ServiceRegistryBuilder()
.applySettings(cfg.getProperties())
.buildServiceRegistry();
sf=cfg.buildSessionFactory(sr);
}
public static Session getCurrentSession(){
return sf.getCurrentSession();
}
public static void beginTransaction(){
getCurrentSession().beginTransaction();
}
public static void commit(){
getCurrentSession().getTransaction().commit();
}
public static void rollback(){
getCurrentSession().getTransaction().rollback();
}
以上是关于封装hibernate的主要内容,如果未能解决你的问题,请参考以下文章
HibernateHibernate配置与sessiontransaction
hibernateHibernate SQL 方言(hibernate.dialect)
hibernateHibernate中get()和load()的区别
HibernateHibernate中使用延迟加载应该注意的事项
hibernateHibernate中save, saveOrUpdate, persist, merge, update 区别