我正在尝试使用flyway在Intellij中创建一个带有一些虚拟表的简单数据库迁移。
我的虚拟表位于“ resources / db / migration”中,格式为“ V1_0__initial_display.sql”。
它们可能包含以下内容:
CREATE TABLE Fake (
ID int,
name varchar(255)
);
CREATE TABLE Persons(
ID int,
name varchar (30)
);
INSERT INTO Persons(ID, name)
VALUES(1,'AXC');
INSERT INTO Persons(ID, name)
VALUES(2,'BB');
我的application.properties:
spring.jpa.hibernate.ddl-auto=validate
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5Dialect
spring.jpa.show-sql=true
spring.logging.level.org.hibernate.SQL=debug
spring.flyway.enabled=true
spring.flyway.user=${db_username}
spring.flyway.password=${db_password}
spring.flyway.url=${database}
spring.flyway.locations=classpath:/db/migration/V1_0__initial_display.sql
我的gradle.build的相关部分:
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.flywaydb:flyway-core'
runtimeOnly 'org.springframework.boot:spring-boot-devtools'
runtimeOnly System.getenv("database")
runtimeOnly 'mysql:mysql-connector-java'
compileOnly 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
compile "org.flywaydb:flyway-core:5.2.4" +
""
flywayMigration "com.xy.z"
}
flyway {
schemas = ['fake', 'persons']
placeholders = [
'keyABC' : 'valueXYZ',
'otherplaceholder': 'value123'
]
url = (System.getenv("database"))
user = (System.getenv("db_username"))
password = (System.getenv("db_password"))
}
我的环境格式。名为数据库的变量:
jdbc:mysql://localhost/xy
SpringBoot应用程序本身:
@SpringBootApplication
公共类XyApplication {
public static void main(String [] args){
SpringApplication.run(XyApplication.class, args);
System.out.println("Hello World!");
Flyway flyway = Flyway.configure().dataSource(System.getenv("database"),
System.getenv("db_username"), System.getenv("db_password")).load();
flyway.clean();
flyway.baseline();
flyway.migrate();
}
}
错误消息:
Caused by: org.flywaydb.core.api.FlywayException: Found non-empty schema(s)
`xy` without schema history table! Use baseline() or set
baselineOnMigrate to true to initialize the schema history table.
我最近从数据库中删除了flyway_schema_history。我认为主要问题在于此,我正在尝试对其进行初始化。不幸的是,这不是唯一的问题:即使在删除此表之前,我的实现也无法正常工作,因此可能存在更多的概念性问题。
你能帮帮我吗?我该如何解决这个问题?
答案 0 :(得分:1)
错误消息包含有关如何解决此问题的所有必要信息。
将spring.flyway.baselineOnMigrate=true
添加到您的application.properties。
答案 1 :(得分:1)
Flyway希望是在架构上运行的第一件事。解决此问题的正确方法是在本地删除xy
模式中的所有内容,并使用迁移文件(.sql)构建所有内容。如果您不想删除数据库中的任何内容,则可以在调用中使用基线标志来表明您知道表中的数据。
通常,FlyWay和其他类似的迁移工具用于允许开发人员在不同的DB(例如Dev和Production或不同的开发人员计算机)中创建相同的架构。如果您已经在xy
中有了一个不是FlyWay提供的表,则可以在代码中使用它,并且该表可以工作,但是生产和其他开发人员将没有此表。