粗心大意害死人--hibernate报错方言为空
cause by:org.hibernate.HibernateException: Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set
前面一直检查hibernate的配置文件,检查dialect这一个property,仔细检查没错
最后发现是新建sessionFactory对象报这个错,跟着着上去,发现是Configuration对象的得到出了问题。
问题在于
Configuration cfg=new Configuration().configure()
这里我写的少了.confugure()。得到的对象是错误的,才引发的这个报错