hibernate.hbm2ddl.auto为update无法自动建表

时间:2021-09-23 22:00:38
mysql5之前hibernate.dialect为org.hibernate.dialect.MySQLInnoDBDialect。mysql5之后为org.hibernate.dialect.MySQL5InnoDBDialect。出现的错误为:HHH000388: Unsuccessful: create table auction_user (user_id integer not null auto_increment, email varchar(255), username varchar(255), userpass varchar(255), primary key (user_id)) type=InnoDB。在org\hibernate\dialect可以找到所有有关方言的api。 hibernate.hbm2ddl.auto为update无法自动建表