配置数据库前缀,没有效果
配置数据库前缀,没有效果:
Hibernate: drop table if exists STUDENT Hibernate: create table STUDENT ( SID integer not null, SNAME varchar(255), GENDER varchar(255), BIRTHDAY datetime, ADDRESS varchar(255), primary key (SID) )
配置如下:
<property name="show_sql">true</property> <property name="hibernate.default_schema">hibernate</property> <property name="hibernate.format_sql">true</property> <property name="hibernate.hbm2ddl.auto">create</property>
MySQL5.7.12,Hibernate5.2.0