hibernate 无法创建表,为什么...?
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="hibernate.connection.url">jdbc:mysql://localhost:3306/e_shop</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.hbm2ddl.auto">create</property>
<property name="hibernate.show_sql">true</property>
AnnotationConfiguration cfs=new AnnotationConfiguration();
cfs.configure("daoHibernate/hibernate.cfg.xml");
new SchemaExport(cfs).create(true,true);
我的所有表都在改变并且表被丢弃然后再次创建为什么如何开始新会话请给出答复