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 ?
|
feedback
|
|
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. | |||
|
feedback
|