views:

1488

answers:

9
+19  Q: 

Migrations for Java

I use both ruby on rails and Java. I really enjoy using migrations when I am working on a rails project. so I am wondering is there a migrations like tool for Java? If there is no such tool is it a good idea to use migrations as a tool to control a database used by a Java project?

+6  A: 

Grails has a dbmigrate utility that is patterned after the one from Rails. Since it's implemented in Groovy, you should be able to use it from any of your Java projects.

Kyle Burton
+1  A: 

I've used Hibernate's SchemaUpdate to perform the same function as migrations. It's actually easier than migrations because every time you start up your app, it examines the database structure and syncs it up with your mappings so there's no extra rake:db:migrate step and your app can never be out of sync with the database it's running against. Hibernate mapping files are no more complex than Rails migrations so even if you didn't use Hibernate in the app, you could take advantage of it. The downside is that it's not as flexible as far as rolling back, migrating down, running DML statements. As pointed out in the comments, it also doesn't drop tables or columns. I run a separate method to do those manually as part of the Hibernate initialization process.

I don't see why you couldn't use Rails migrations though - as long as you don't mind installing the stack (Ruby, Rake, Rails), you wouldn't have to touch your app.

Brian Deterling
It doesn't sync it 100%. It doesn't alter columns, delete columns or tables, remove FKs etc.
cherouvim
+6  A: 

There are also two independent implementations of rails-like migrations for Java:

1) Maven-based migrations from Carbon Five

http://www.carbonfive.com/community/archives/2008/02/introducing_jav.html

2) Ant-based tasks from Hashrocket (my personal favorite)

http://www.jroller.com/obie/entry/migrator_activerecord_migrations_in_java

Although these packages were written for Maven and Ant specifically, with some work you can adapt them to just about anything.

Winky
+4  A: 

Liquibase is another project in this domain worth checking out.

Adam Monsen
A: 

ActiveRecord migrations provides ability for both DDL definition and additional logics execution, during DBs migration.

All the java tools I found provided one of the following:

  • DDL definition (xml like)
  • logics execution
  • sql script snippet execution.
  • basically NO scripting support.

What would be the most natural alternative for RoR ActiveRecord? (DDL, scripting)

leonardinius
+2  A: 

Migrate4j seems like a candidate, but the project doesn't look mature enough for production usage.

reacuna
+2  A: 

I ran across this post while researching the same question. I haven't come to any conclusions about the best tool or approach yet, but one tool that I've come across which hasn't been mentioned in other answers so far is dbdeploy. I'd be interested to read any comparisons of these tools.

Some other relevant resources: Martin Fowler and Pramod Sadalage's somewhat aged post on Evolutionary Database Design, and the book Refactoring Databases: Evolutionary Database Design by Sadalage and Scot Ambler.

Kief
+2  A: 

For a feature comparison between Flyway, Liquibase, c5-db-migration, dbdeploy, mybatis, MIGRATEdb and migrate4j, have a look at http://code.google.com/p/flyway/

This should be a good start for you and anyone else to select the right tool for the job

Axel Fontaine
Hey, I wasn't aware of Flyway. It looks pretty interesting and I'll have a closer look at it. Thanks for mentioning Flyway!
Pascal Thivent
@Pascal Thivent Thanks for your comment! If you do evaluate it, I'd be glad to hear your opinion/criticism/suggestions about it, either here or in Flyway's issue tracker :-) I'll also look into adding DbMaintain to the comparison matrix as it looks like a great competitor...
Axel Fontaine
Sure, I will. And thanks for adding DbMaintain to the comparison, it's very nice to have such a matrix.
Pascal Thivent
+1  A: 

There is also DbMaintain which has been initially developed inside Unitils but is now a dedicated project. We are currently using it and are very satisfied (which doesn't mean there aren't any good alternatives). I list more of them in my database+migration bookmarks (with a focus on tools supporting Maven).

Pascal Thivent
@Pascal Thivent Tools like that will help us to develop faster and safely
Arthur Ronald F D Garcia
@Arthur Yes, it's very a good thing we got some tools like that too. Cascading schema updates from one environment to the other is now a pleasure for us :)
Pascal Thivent