欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not Set

程序员文章站 2022-04-13 14:09:44
...

 今天把以前一个项目的包更新了下,出现了如下错误:

Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not Set

是新版Hibernate需要设置方言,在hibernate.cfg.xml中增加<property name="dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property>解决。

并分享一篇比较全的数据库方言http://blog.csdn.net/jialinqiang/article/details/8679171