我正在尝试将Flyway与我的简单maven项目集成以用于学习目的。
我正在使用以下插件和配置:
<plugin>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-maven-plugin</artifactId>
<version>4.0.3</version>
<dependencies>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.9</version>
</dependency>
</dependencies>
<configuration>
<url>jdbc:mysql://${database.host}:${database.port}/${database.schema}?useUnicode=true&characterEncoding=UTF-8&characterSetResults=UTF-8</url>
<user>${database.user}</user>
<password>${database.password}</password>
<sqlMigrationPrefix>V_</sqlMigrationPrefix>
<sqlMigrationSeparator>__</sqlMigrationSeparator>
<locations>
<location>filesystem:src/main/resources/db/migrations</location>
</locations>
</configuration>
</plugin>
这是我的示例迁移sql的名称:
V_1__create_new_table.sql
我不确定我做错了什么,但我一直得到以下例外:
org.flywaydb.core.api.FlywayException: Invalid version containing non-numeric characters. Only 0..9 and . are allowed. Invalid version: V.1
我确实参考了以下问题,正如您在配置中看到的那样,我已经完成了所提出的问题: Similar Question
答案 0 :(得分:4)
您只需尝试仅定义V
作为迁移前缀,并命名迁移文件V1__Create_New_Table.sql
(这些是Flyway默认值)。
您将V_
定义为前缀并将V_1__Create_New_Table.sql
定义为文件名的方式导致了问题,因为这告诉Flyway此迁移的版本为V.1
,这是不正确的当然。
对于较少数量的版本,您可以选择以下内容:V1_1__Create_New_Table.sql
,例如,它会为您提供1.1
的迁移版本。
在您提供的相关SO答案中,建议的答案是使用V_
作为前缀,_
作为分隔符,而您在插件中将__
定义为插件分隔符。