vote up 9 vote down star

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?

flag

80% accept rate

5 Answers

vote up 2 vote down check

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, etc.

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.

link|flag
It doesn't sync it 100%. It doesn't alter columns, delete columns or tables, remove FKs etc. – cherouvim Aug 26 at 20:06
vote up 0 vote down

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)

link|flag
vote up 1 vote down

Liquibase is another project in this domain worth checking out.

link|flag
vote up 1 vote down

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.

link|flag
vote up 6 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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