Hibernate工具类
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
public class HibernateUtil {
private static final SessionFactory sessionFactory = buildSessionFactory();
...
分类:
Web程序 时间:
2014-10-17 15:42:00
阅读次数:
218
(1)异常信息如下:
严重: Servlet.service() for servlet action threw exception
java.lang.RuntimeException: No CurrentSessionContext configured!
at com.lc.utils.HibernateUtil.executeQuery(HibernateUtil.java:56)...
分类:
系统相关 时间:
2014-10-05 12:26:18
阅读次数:
266
import org.hibernate.HibernateException; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.hibernate.cfg.Configuration;...
分类:
系统相关 时间:
2014-08-16 11:01:10
阅读次数:
247
NHibernate动态添加表设置和动态扩展表差不多,添加了一个模板hbm.xml文件,用于创建动态hbm.xml,HibernateUtil无改动。MappingManger添加了两个方法 1 public static void UpdateClassMapping(DynamicTe...
分类:
系统相关 时间:
2014-07-10 14:02:02
阅读次数:
377
1、初始数据@Test public void test01() { Session
session = null; try { session = HibernateUtil.getSessionFactory().openSession();
session.beginTransac...
分类:
系统相关 时间:
2014-05-12 19:16:27
阅读次数:
469