null id in entry (don't flush the Session after a

想把在学习中的错误列出来, 便于以后的复习

 

今天在做到一个系统的时候, 出现了以下的错误信息

 

  null id in entry (don't flush the Session after an exception occurs)

 

后来才知道是有关表结构的问题

 

        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
                <prop key="show_sql">true</prop>
                <prop key="hibernate.hbm2ddl.auto">create
</prop>
                <prop key="hibernate.jdbc.batch_size">20</prop> 
            </props>
        </property>

  这是我在application中的代码

 

刚开始是create 部分是update , 出现了上面的问题

 

对于参数的意义是

 

validate               加载hibernate时,验证创建数据库表结构
create                  每次加载hibernate,重新创建数据库表结构,这就是导致数据库表数据丢失的原因。
create-drop         加载hibernate时创建,退出是删除表结构
update                加载hibernate自动更新数据库结构

你可能感兴趣的:(数据结构,sql,Hibernate,jdbc)