在hibernate的配置文件中有一个十分有用的特别是对刚学时数据库的人特别有用的节点就是
<property name="hbm2ddl.auto">create</property> Drop and re-create the database schema on startup(删掉现有的表并且重新建立一张表),这样如果我们在项目刚开始是,就可以专注于设计而不用去分心于建表,这看起来好像是一件很小的事,但是对于那些对sql语言不是很熟悉的学习面向对象的开发人员来说无疑是一件很了不起的是。
首先,我们可以检测我们的hbm.xml文件是否配的很合理,其次他也是我们进一步学习sql的过渡阶段。在spring中我们同是可以利用
<property name="hibernateProperties">
<props>
</property>
来进行配置当然他还不只是只要create的属性还有 validate | update | create-drop他的作用就是 Automatically validate or export schema DDL to the database when the SessionFactory is created. With create-drop, the database schema will be dropped when the SessionFactory is closed explicitly.
java 代码
- <property name="hbm2ddl.auto">create</property>
首先,我们可以检测我们的hbm.xml文件是否配的很合理,其次他也是我们进一步学习sql的过渡阶段。在spring中我们同是可以利用
<property name="hibernateProperties">
java 代码
- <property name="hibernateProperties">
- <prop key="hibernate.hbm2ddl.auto">create</prop>
- </props>
- </property>
</property>
来进行配置当然他还不只是只要create的属性还有 validate | update | create-drop他的作用就是 Automatically validate or export schema DDL to the database when the SessionFactory is created. With create-drop, the database schema will be dropped when the SessionFactory is closed explicitly.