Spring引导无法从黄瓜测试上下文创建数据源bean

时间:2015-08-31 07:13:12

标签: java spring spring-boot cucumber

在基于spring boot的应用程序中运行测试时,spring无法创建数据源bean:

Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [org/springframework/boot/autoconfigure/jdbc/DataSourceAutoConfiguration$NonEmbeddedConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [javax.sql.DataSource]: Factory method 'dataSource' threw exception; nested exception is org.springframework.beans.factory.BeanCreationException: Cannot determine embedded database driver class for database type NONE. If you want an embedded database please put a supported one on the classpath.

阅读此错误,我想,我很清楚,spring没有读取我的application.properties文件位于:

src/test/resources/application.properties

对于clairity,出于应用程序的原因,我不想在运行集成测试时使用内存数据库。

此文件包含:

spring.datasource.url=jdbc:mysql://127.0.2.1:3306/project-test
spring.datasource.username=foo
spring.datasource.password=bar
spring.datasource.driverClassName=org.mariadb.jdbc.Driver

使用bootRun at启动应用程序时读取

src/main/resources/application.properties 

并且确实正确地创建了数据源。

我的测试基于黄瓜,并开始使用以下课程:

@RunWith(Cucumber.class)
public class AcceptanceTests {
}

使用BaseSteps类上的以下注释开始测试上下文,每个定义黄瓜测试的类继承自

@WebAppConfiguration
@ContextConfiguration(classes = App.class)

Spring上下文已成功启动,但无法找到我的application.properties文件和/或使用它。

2 个答案:

答案 0 :(得分:3)

我找到了解决方案。

我添加了改变ContextConfiguration,如下所示:

@ContextConfiguration(classes = App.class, loader = SpringApplicationContextLoader.class)

答案 1 :(得分:0)

使用@SpringApplicationConfiguration代替ContextConfiguration。这是Spring-boot应用程序测试所必需的。