When deploying applications, I often use Hibernate’s capacity to create database schema in order to simplify the deployment. This is easily achievable by configuring hiberna
Add hibernate property hibernate.hbm2ddl.import_files in your hibernate configuration. Change hibernate.hbm2ddl.auto property to create. Add initial_data.sql in /classes directory with initial sql code to insert data. Hibernate execute this after create database schema.
<bean id="sessionFactory"
class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">${hibernate.dialect}</prop>
<prop key="hibernate.show_sql">${hibernate.show_sql}</prop>
<prop key="hibernate.hbm2ddl.auto">create</prop>
<prop key="hibernate.hbm2ddl.import_files">initial_data.sql</prop>
</props>
</property>
</bean>
If you do not want to add a property in your hibernate configuration you can create a file import.sql in /classes directory and hibernate use this by default if property hibernate.hbm2ddl.auto equals to create
Please make sure that your import.sql is formatted correctly. Start with a one liner insert statement to test.
Adding import.sql to the class path works great, hbm2ddl checks if the file exists and executes it. The only additional detail is that each sql command must be on its own line, otherwise it will fail to execute.
This will also work only if hbm2ddl.auto
is set to create
or create-drop
.
hbm2ddl.auto
and hbm2ddl.import_files
properties are evilLike said elsewhere, using hibernate.hbm2ddl.auto
and hibernate.hbm2ddl.import_files
for database change management has some serious drawbacks:
I personally use liquibase for database change management and have developed the following workflow to reduce the maintenance work:
Even for complicated changes in which one has to implement a customChange, this can be achieved in a matter of hours, including the definition of rollbacks, testing and documentation. For trivial changes, it is a matter of minutes. Basically: you have to do a little more work (I have created customized change sets for 4 database configurations in less than a day), but you get the peace of mind that you have done everything possible to keep the database in a consistent state.
After a couple of hours stumbling with this, I decided to share what I've found, though it's a very old post.
To make it work properly, i had to do the following:
hbmddl
set to create
or create-drop
resources
folder, i'm using maven.Hope that helps.
I found this by doing a search on "Hibernate fixtures" :
Hibernate will create the database when the entity manager factory is created (actually when Hibernate's SessionFactory is created by the entity manager factory). If a file named import.sql exists in the root of the class path ('/import.sql') Hibernate will execute the SQL statements read from the file after the creation of the database schema. It is important to remember that before Hibernate creates the schema it empties it (delete all tables, constraints, or any other database object that is going to be created in the process of building the schema).
Source: http://www.velocityreviews.com/forums/t667849-hibernate-quotfixturesquot-or-database-population.html
Give it a try and let us know if it works!