配置数据库前缀,没有效果:
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
所以说慕课没有大神来回答这个问题吗?看了所有提问前缀无效的都没解决。。
我也是这个情况
自己试了试,表前面默认加前缀的话,表名会改变,插入就报错了。
有效果吧?
。。。