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

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



posted @ 2015-04-19 02:37  homer3000  阅读(9609)  评论(0)    收藏  举报