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:
- Make changes to your hibernate model
- Run liquibase diff between hibernate and your existing database
- Inspect your new liquibase changeSets
- 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:
- Make changes to your hibernate model
- Add required changeSet to your changelog file
- Execute your liquibase script against the database
- Test and repeat
complex architecturebut i'll do my best to explain. it's amaven+spring+hibernateproject in3 subprojects.dblayer,servicelayer, andwebapp.so there let's saytestdbconfigcontext for test classes and there is the real onedbconfigused by the webapp.dblayerdoes the db stuffs so i use liquibase inspring.testdbconfigpicks properties from property files in resource folder(of dblayer project) and for some reason building the dblayer withtestdbconfig+liquibase+hsqldb+hbm2ddl=createworks. – black sensei Aug 20 '10 at 9:57modules(db+service) are in webapp pom so their context are imported inwebbappconfig.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 testconfigdbconfig+liquibase+hsqldb+hbm2ddl=createseem 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:16liquibase+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 betweentestdbconfiganddbconfig(since this is the discriminant part). – Pascal Thivent Aug 21 '10 at 10:02