i'm having a light problem with liquibase and hibernate.I expect hibernate to create the schema when the hbm2ddl is set to create and then have liquibase polulate the database with an sql script file.
i've notice that when on validate it behaves as describe and on create it doesn't Especially on a testing environment when using hsqldb (in memory).I seem to be blind then.

is there a way to have my expected works with hsqldb as in populate the db after it creation by hibernate. thanks for reading this.

link|improve this question

75% accept rate
How is liquibase supposed to be triggered in your setup? – Pascal Thivent Aug 19 '10 at 23:33
Hi pascal! well it's a bit complex architecture but i'll do my best to explain. it's a maven+spring+hibernate project in 3 subprojects.dblayer, servicelayer, and webapp.so there let's say testdbconfig context for test classes and there is the real one dbconfig used by the webapp. dblayer does the db stuffs so i use liquibase in spring.testdbconfig picks properties from property files in resource folder(of dblayer project) and for some reason building the dblayer with testdbconfig+liquibase+hsqldb+hbm2ddl=create works. – black sensei Aug 20 '10 at 9:57
All the modules(db+service) are in webapp pom so their context are imported in webbappconfig.the integration test is run with real configs and those config scripts are in the webapps.building the webapp with a maven command also runs the integration test which uses real configs.in the webapp same values in property file for dbconfig(not testconfig) as in testconfig dbconfig+liquibase+hsqldb+hbm2ddl=create seem not to polulate the db so my integration test fails.tried with mysql and it's only validate that let the data populated.Did i do a good job explaining?Thanks for reading this – black sensei Aug 20 '10 at 10:16
I think you did a pretty decent job and it's indeed a sophisticated setup. Sadly, I don't have any experience with liquibase+spring+hbm2ddl (isn't liquibase supposed to be a replacement for hbm2ddl by the way?) and I'm afraid I won't be very helpful here. I guess they aren't any obvious differences between testdbconfig and dbconfig (since this is the discriminant part). – Pascal Thivent Aug 21 '10 at 10:02
feedback

1 Answer

up vote 2 down vote accepted

Liquibase is best used as a replacement for hbm2ddl. That way you can have your data population occur when the database is in the state that fits that data, and later changesets can upgrade your inserted data along with other changes. If you run hbm2ddl first, then liquibase to populate the data, you will need to always be making changes to your insert data structure.

One way you can use hibernate and liquibase is to use the liquibase diff tool under ant or maven during development to append to your changelog file based on differences between your database and your hibernate model. Make sure you inspect what it is trying to do, since it isn't always what you expect (it decides to drop and add a column instead of renaming it). Once your changelog file has been created, you can run it like any changelog file by passing it to the liquibase spring bean on app startup, for example. You don't need to use both hbm2ddl and liquibase, as liquibase uses hbm2ddl to generate the hibernate "database" that liquibase compares your current database against.

With this, your steps are:

  1. Make changes to your hibernate model
  2. Run liquibase diff between hibernate and your existing database
  3. Inspect your new liquibase changeSets
  4. Execute your liquibase script against the database

The only issue may be that the hibernate diff tool may not be supported in maven like it is in ant and the command line, especially in 1.9.

If you don't want to deal with the liquibase diff tool, you can always append changeSets to the changelog file for each change manually. The XML format is designed to be easy to manually work with. In this case, your steps are:

  1. Make changes to your hibernate model
  2. Add required changeSet to your changelog file
  3. Execute your liquibase script against the database
  4. Test and repeat
link|improve this answer
Thanks Nathan!! i get the drift now.This is what i'm doing right now.i removed hbm2ddl from sping context.then i included the schema change log to create the tables and then include the changelog that contains the insert statements (and csv files).works perfect.thanks guys really big thanks – black sensei Aug 21 '10 at 20:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.