码迷,mamicode.com
首页 > 数据库 > 详细

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

时间:2015-04-19 06:22:02      阅读:5892      评论:0      收藏:0      [点我收藏+]

标签:

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);
 



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

标签:

原文地址:http://www.cnblogs.com/homer3000/p/e5dc3ec58a30293ab72664cbcf8661a1.html

(1)
(1)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!