Flyway can't find classpath:db/migrations

前端 未结 4 1819
忘了有多久
忘了有多久 2021-01-12 22:48

I just started right now a new project in Intellij using Spring Boot ver 2.1.3 and Flyway 5.2.4 with Java 11.

After try to start my project i got :

C         


        
4条回答
  •  不思量自难忘°
    2021-01-12 23:06

    I had a similar error, and solved it as follows: I added these commands

    spring.flyway.baselineOnMigrate=true
    spring.flyway.check-location=true
    spring.flyway.locations=classpath:db/migration
    spring.flyway.schemas=public
    spring.flyway.enabled=true
    

    to application.properties

提交回复
热议问题