I've a problem with the Flyway schema upgrader for Spring. Following code exists in my servlet.xml

<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
    <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
    <property name="url" value="jdbc:mysql://localhost/database"/>
    <property name="username" value="root"/>
    <property name="password" value="password"/>
</bean>

<bean id="flyway" class="com.googlecode.flyway.core.Flyway" init-method="migrate" depends-on="dataSource">
    <property name="dataSource" ref="dataSource"/>
</bean>

But how to set the migration script directory or rather whats the default directory?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Everything is explained in the excellent documentation:

a busy cat

If you want to alter the default directory (which is db/migration as shown on the picture above), I believe this should work (see: Flyway.setBaseDir()):

<bean id="flyway" class="com.googlecode.flyway.core.Flyway" init-method="migrate" depends-on="dataSource">
    <property name="dataSource" ref="dataSource"/>
    <property name="baseDir" value="my/migrations/path"/>
</bean>
link|improve this answer
i've read the documentation but how can i set the baseDir property in spring? and whats the root directory? – endian Jan 26 at 21:32
@endian: the default directory is db/migration, exactly what the picture shows. The "root" directory is src/main/resources - the root of your CLASSPATH. In the meantime I added Spring integration example. – Tomasz Nurkiewicz Jan 26 at 21:38
i added the package main.resources.db.migration but flyway prints again: Unable to find path for sql migrations: db/migration – endian Jan 26 at 21:52
@endian: Are you using maven? There should be a directory named /src/main/resources with a subdirectory db/migration just like the screenshot says. I am using exact same configuration and works like a charm. – Tomasz Nurkiewicz Jan 26 at 21:54
@Thomasz: No, i've already read the code of Flyway.java and SqlMigrationResolver.java – endian Jan 26 at 21:58
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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