0

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);

我的所有表都在改变并且表被丢弃然后再次创建为什么如何开始新会话请给出答复

4

1 回答 1

4
<property name="hibernate.hbm2ddl.auto">create</property>

因此,每次它都会删除并创建表。

<property name="hibernate.hbm2ddl.auto">update</property> 

使用update而不是create.

于 2013-07-27T14:23:45.787 回答