Location not found on flyway migrate on websphere
问题 I'm trying to setup flyway-migration on Websphere server. My project consists of the modules: --projectwar.war --projectsql.jar --java --MyFlywayUtil.class -- resources -- myscripts --projectmodel.jar --java --MyRiskDataSourceConfig.class MyRiskDataSourceConfig contains flyway migration declaration: @Bean(initMethod = "migrate") public Flyway flyway(@Qualifier("myDataSource") DataSource dataSource) { Flyway flyway = new Flyway(); flyway.setBaselineOnMigrate(true); flyway.setClassLoader