org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL "
Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'type=MyISAM' at line 6
今天刚学习jpa在网上找例子实验时刚写完就报错了,网上不部分都不靠谱找了半个小时都是不争取的答案,有的建议是@GeneratedValue(strategy= GenerationType.AUTO)应该改成@GeneratedValue(strategy= GenerationType.identity)结果该了也没用。。。。。。。。。
后来看到一篇文章说是应该版本问题应该是吧配置文件的mysql方言该成高版本
<property name="hibernate.dialect" value="org.hibernate.dialect.MySQLDialect" />
改成
<property name="hibernate.dialect" value="org.hibernate.dialect.MySQL5Dialect" />
才解决。心情郁闷。。。。