首页 > 系统服务 > 详细

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

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

我手动配置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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!