hibernate 加载 jdbc驱动出错Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set

时间:2015-04-19 06:22:02   收藏:0   阅读:5892

Exception in thread "main" org.hibernate.HibernateException: Access to DialectResolutionInfo cannot be null when ‘hibernate.dialect‘ not set
程序基本没动过以前用的3.3.2的版本今天换成4.3.4的版本后改了一下sessionFactory的生成方法其他的不变开始还能运行过了30min左右就不能运行了!

 
 
hibernate4 已经废弃原来的buildSessionFactory 用下面的就没问题了

Configuration cfg = new Configuration().configure();
StandardServiceRegistry serviceRegistry = new StandardServiceRegistryBuilder()
                    .applySettings(cfg.getProperties()).build();
SessionFactory sessionFactory = cfg.buildSessionFactory(serviceRegistry);
 



评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!