hibernate 无法自动创建表 的解决办法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hibernate 无法自动创建表 的解决办法相关的知识,希望对你有一定的参考价值。
执行session.save() 时出现异常:
org.hibernate.exception.SQLGrammarException: could not execute statement
无法创建表。
解决方法:
1)确定配置:
<property name="hibernate.hbm2ddl.auto">update</property>
2)如果是mysql5的话,确定配置:
<property name="hibernate.dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property>
注意红字部分。
MySQLInnoDBDialect,生成的建表语句中用type=InnoDB,
而MySQL5InnoDBDialect是ENGINE=InnoDB
本文出自 “程序员瑞欣” 博客,请务必保留此出处http://rayshine.blog.51cto.com/6941801/1884830
以上是关于hibernate 无法自动创建表 的解决办法的主要内容,如果未能解决你的问题,请参考以下文章
[转]Hibernate不能自动建表解决办法及Hibernate不同数据库的连接及SQL方言