码迷,mamicode.com
首页 > Web开发 > 详细

hibernate 无法自动创建表 的解决办法

时间:2016-12-22 00:44:14      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:hibernate sqlgrammarexception: could not execute statement sqlgrammarexception: could not execute statement 无法建表 自动建表

执行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 sqlgrammarexception: could not execute statement sqlgrammarexception: could not execute statement 无法建表 自动建表

原文地址:http://rayshine.blog.51cto.com/6941801/1884830

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!