spring-boot在测试中不使用application.properties

时间:2014-10-06 06:10:29

标签: hibernate spring-boot flyway

我有一个带有spring,hibernate和flyway的项目来创建数据库模式。所以我有

spring.jpa.hibernate.ddl-auto: validate

在我的application.properties文件中。此配置在正常运行期间(在打包可执行jar文件并从终端运行它之后):

2014-10-06 10:06:17.863  INFO 7519 --- [           main] o.h.tool.hbm2ddl.SchemaValidator         : HHH000229: Running schema validator

但在通过maven运行测试时会被忽略。

1804 [main] INFO  o.h.tool.hbm2ddl.SchemaExport - HHH000227: Running hbm2ddl schema export 
1805 [main] DEBUG org.hibernate.SQL - drop table test_entity if exists 
1806 [main] DEBUG org.hibernate.SQL - drop sequence hibernate_sequence 
1807 [main] DEBUG org.hibernate.SQL - create table test_entity (id bigint not null, name    varchar(255), primary key (id)) 
1807 [main] DEBUG org.hibernate.SQL - create sequence hibernate_sequence 
1808 [main] INFO  o.h.tool.hbm2ddl.SchemaExport - HHH000230: Schema export complete 

与官方flyway-sample的主要区别在于我不使用spring-boot提供的maven-parent。

完整的项目是here

2 个答案:

答案 0 :(得分:15)

您的测试不是使用Spring Boot(它需要使用@SpringApplicationConfiguration而不是@ContextConfiguration,或声明相应的侦听器。)

答案 1 :(得分:5)

您应该定义 ConfigFileApplicationContextInitializer 以在集成测试中包含application.properties文件。只需将注释更改为:

@ContextConfiguration(classes = FlywaySpringBootTestApplication.class, initializers = ConfigFileApplicationContextInitializer.class)

我已经通过这个小小的改动向您发送了拉取请求。