Spring Boot: Hibernate and Flyway boot order

前端 未结 6 662
一整个雨季
一整个雨季 2020-12-09 03:52

I have created Spring application. Pom xml is attached.

It has a config like this (below) and some db/migration/V1__init.sql for Flyway db migration tool.

It

6条回答
  •  旧时难觅i
    2020-12-09 04:19

    may be because of the order

    add on application.properties

    flyway.out-of-order = true
    

    or application.yml on spring

    flyway:
      out-of-order: true
    

提交回复
热议问题