自动创建表出错 type=InnDB

时间:2021-08-08 22:00:05

因为type=InnoDB在5.0以前是可以使用的,但5.1之后就不行了

只需要修改配置:

hibernate.dialect=org.hibernate.dialect.MySQLInnoDBDialect

修改为:

hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect

总结一下,在MySQL5.1及以上版本,使用 MySQL5InnoDBDialect