【发布时间】:2016-09-07 19:18:51
【问题描述】:
我正在尝试设置我的端到端测试以使用内存数据库,该数据库可以轻松启动、关闭、擦除和植入测试数据。我正在从事一个春季项目,并正在使用 flyway 迁移数据库。在没有任何配置文件的情况下启动我的 spring 服务器时,flyway 正确运行迁移并且一切都很好。但是,当在我的“测试”配置文件中运行时,flyway 迁移不会运行。
application.properties
# Database Properties
spring.jpa.database=POSTGRESQL
spring.jpa.show-sql=true
spring.jpa.hibernate.ddl-auto=validate
spring.database.driverClassName=org.postgresql.Driver
spring.datasource.url=jdbc:postgresql://localhost:5432/mydb
# Data Rest Properties
spring.data.rest.basePath=/api
# Logging Properties
logging.level.root=WARN
logging.level.org.flywaydb=INFO
logging.level.com.myproj=INFO
application-test.properties
# Server Properties
server.port=8081
# Database Properties
spring.jpa.database=H2
spring.database.driverClassName=org.h2.Driver
spring.datasource.url=jdbc:h2:mem:mydb-test
# Dev Tools Properties
spring.devtools.restart.enabled=false
# Flyway Properties
flyway.locations=classpath:db/migration,classpath:db/test_seed_data
这是我使用测试配置文件启动 spring 服务器时得到的输出:
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v1.4.0.M2)
2016-05-11 23:01:16.052 INFO 86897 --- [ restartedMain] com.myproj.myprojApplicationKt : Starting myprojApplicationKt on me.local with PID 86897 (/Users/me/Workspace/myproj/target/classes started by me in /Users/me/Workspace/myproj)
2016-05-11 23:01:16.054 INFO 86897 --- [ restartedMain] com.me.myprojApplicationKt : The following profiles are active: test
2016-05-11 23:01:20.312 ERROR 86897 --- [ost-startStop-1] o.s.b.c.embedded.tomcat.TomcatStarter : Error starting Tomcat context: org.springframework.beans.factory.UnsatisfiedDependencyException
2016-05-11 23:01:20.379 WARN 86897 --- [ restartedMain] ationConfigEmbeddedWebApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Unable to start embedded container; nested exception is org.springframework.boot.context.embedded.EmbeddedServletContainerException: Unable to start embedded Tomcat
2016-05-11 23:01:20.404 ERROR 86897 --- [ restartedMain] o.s.boot.SpringApplication : Application startup failed
最终的错误是验证失败(关闭验证时仍然无法创建表):
Caused by: org.hibernate.tool.schema.spi.SchemaManagementException: Schema-validation: missing table [table-name]
知道为什么迁移不针对“测试”配置文件运行吗?
编辑
刚刚意识到我的迁移是用 PostgresQL 编写的,我希望它们能够与 H2 一起使用......我认为这显然是一个问题。因此,将此问题扩展为如何在两种不同的数据库类型上运行相同的迁移(如果可能的话)...
但是为什么我没有收到一条错误消息,指出 Flyway 尝试运行迁移并且数据库不接受查询?
【问题讨论】:
-
我曾经使用 liquibase,它为迁移提供了一种与 DB 无关的语法(例如,在 XML 中)。你找到什么好的flyway解决方案了吗?
标签: database spring h2 flyway end-to-end