java8-cucumber-java8 sprinboot应用程序

时间:2018-11-22 10:36:42

标签: cucumber-java

我试图从Java主应用程序运行.feature,或者说是Spring Boot应用程序,而不是通过Junit方法。我面临从主要方面运行它的问题。我以某种方式尝试通过在eclipse中使用Main.main调用从main运行,但是当我打包到.jar或部署到openshift时,它开始抛出No backend module found exception。你们中的任何人都可以帮助我找到解决方法吗? 我正在使用java8和黄瓜java8依赖项

例如

Main.main(new String[] { "-g", "com.test.helloworld", "C:\\Users\\<user.name>\\git1\\test-helloworld\\src\\main\\resources\\helloworld.feature" });

我想在普通的Java主类中尝试一下。在eclipse中,它可以轻松执行,但是当我在jar / openshift中尝试时,它无法加载功能部件或后端模块。

1 个答案:

答案 0 :(得分:0)

SpringBoot使用嵌套的jar结构,该结构需要使用ApplicationContext.getResources来透明地访问它。因此,您必须为Cucumber实现一个利用应用程序上下文的资源加载器。

另请参阅: