Java EE 之 Hibernate异常解决:org.hibernate.exception.SQLGrammarException: could not execute statement(示例代
Posted 后浪
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java EE 之 Hibernate异常解决:org.hibernate.exception.SQLGrammarException: could not execute statement(示例代相关的知识,希望对你有一定的参考价值。
本质原因:配置的Java Bean,由Hibernate自动产生的SQL语句中有语法错误
原因如下:
情况1.存在字段名/表名与数据库关键字冲突
情况2.MySQL5.0以后与MySQL5.0以前事务引擎InnoDB配置微妙不同
解决方案:
//mysql 5.0之后【engine = InnoDB】 <property name="hibernate.dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property> //NySQL 5.0之前【type = InnoDB】 <property name="hibernate.dialect">org.hibernate.dialect.MySQLInnoDBDialect</property>
以上是关于Java EE 之 Hibernate异常解决:org.hibernate.exception.SQLGrammarException: could not execute statement(示例代的主要内容,如果未能解决你的问题,请参考以下文章