tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Articles > Hibernate > What are the possible values of the Hibernate hbm2ddl.auto configuration

What are the possible values of the Hibernate hbm2ddl.auto configuration

Author: Venkata Sudhakar

Hibernate allows validate, update, create, create-drop and none for hbm2ddl.auto property.

validate: validate the existing schema, makes no changes to the database.

1<!--hibernate.cfg.xml -->
2<property name="hbm2ddl.auto">validate</property>
3 
4<!--applicationContext.xml -->
5<property name="hibernateProperties">
6    <props>
7        <prop key="hibernate.hbm2ddl.auto">validate</prop>
8    </props>
9</property>

update: update the existing schema.

1<!--hibernate.cfg.xml -->
2<property name="hbm2ddl.auto">update</property>
3 
4<!--applicationContext.xml -->
5<property name="hibernateProperties">
6    <props>
7        <prop key="hibernate.hbm2ddl.auto">update</prop>
8    </props>
9</property>

create: creates the schema, destroying previous data.

1<!--hibernate.cfg.xml -->
2<property name="hbm2ddl.auto">create</property>
3 
4<!--applicationContext.xml -->
5<property name="hibernateProperties">
6    <props>
7        <prop key="hibernate.hbm2ddl.auto">create</prop>
8    </props>
9</property>

create-drop: drop the schema when the SessionFactory is closed explicitly, typically when the application is stopped.

1<!--hibernate.cfg.xml -->
2<property name="hbm2ddl.auto">create-drop</property>
3 
4<!--applicationContext.xml -->
5<property name="hibernateProperties">
6    <props>
7        <prop key="hibernate.hbm2ddl.auto">create-drop</prop>
8    </props>
9</property>

none: does nothing with the schema, makes no changes to the database.

1<!--hibernate.cfg.xml -->
2<property name="hbm2ddl.auto">none</property>
3 
4<!--applicationContext.xml -->
5<property name="hibernateProperties">
6    <props>
7        <prop key="hibernate.hbm2ddl.auto">none</prop>
8    </props>
9</property>

 
  


  
bl  br