码迷,mamicode.com
首页 > 系统相关 > 详细

Caused by: org.hibernate.HibernateException: Connection cannot be null when 'hibernate.dialect' not

时间:2014-06-10 07:26:34      阅读:371      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   a   

我手动配置hibernate4.3.4,测试的时候出现:

Caused by: org.hibernate.HibernateException: Connection cannot be null when ‘hibernate.dialect‘ not set

我是按照官方文档配置的,但是官方文档的代码好像有点问题

这是官方文档里面的那个工具类的部分代码:return new Configuration().configure().buildSessionFactory(
       new StandardServiceRegistryBuilder().build() );

搞笑的是,官方文档时没有哪个return,感觉是不是太粗心了

。。。。后来看网上的文档,自己有改了一下,可以了

下面是正确的代码:

Configuration configuration = new Configuration().configure();
            ServiceRegistry serviceRegistry = new StandardServiceRegistryBuilder().applySettings(configuration.getProperties()).build();
            SessionFactory sessionFactory = configuration.buildSessionFactory(serviceRegistry);
            return sessionFactory;

 

 


 

Caused by: org.hibernate.HibernateException: Connection cannot be null when 'hibernate.dialect' not,布布扣,bubuko.com

Caused by: org.hibernate.HibernateException: Connection cannot be null when 'hibernate.dialect' not

标签:c   style   class   blog   code   a   

原文地址:http://blog.csdn.net/j903829182/article/details/29622829

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