I am working on a project using hibernate3 with annotation configuration, and was looking at flyway for database migration tasks synced with development. I was hoping to use HibernateTemplate in java migrations, however it looks like only JdbcTemplate is supported for writing migrations in flyway. Is there a way to use HibernateTemplate, or JPATemplate, rather than JdbcTemplate in Flyway Java Migrations ?

link|improve this question
feedback

1 Answer

Using HibernateTemplate or JpaTemplate doesn't make sense in this case. Flyway is responsible for changing the very fundaments (the actual DB structure) Hibernate is based upon. Hibernate then relies on the new post-migration DB structure being in place.

Flyway should therefore run before instantiation of the hibernate session factory.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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