Spring boot Test 失败,指出无法启动 ServletWebServerApplication由于缺少 ServletWebServerFactory Bean 而导致文本

测试类:-

@RunWith(SpringRunner.class)
@SpringBootTest(classes = { WebsocketSourceConfiguration.class,
        WebSocketSourceIntegrationTests.class }, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT, properties = {
                "websocket.path=/some_websocket_path", "websocket.allowedOrigins=*",
                "spring.cloud.stream.default-binder=kafka" })
public class WebSocketSourceIntegrationTests {

    private String port = "8080";

    @Test
    public void testWebSocketStreamSource() throws IOException, InterruptedException {
        StandardWebSocketClient webSocketClient = new StandardWebSocketClient();
        ClientWebSocketContainer clientWebSocketContainer = new ClientWebSocketContainer(webSocketClient,
                "ws://localhost:" + port + "/some_websocket_path");
        clientWebSocketContainer.start();
        WebSocketSession session = clientWebSocketContainer.getSession(null);
        session.sendMessage(new TextMessage("foo"));
        System.out.println("Done****************************************************");
    }

}

我在这里看到了同样的问题,但没有什么帮助我。我可以知道我错过了什么吗?

我在依赖关系层次结构中有编译时依赖关系。spring-boot-starter-tomcat


答案 1

此消息说:您需要在 ApplicationContext 中配置至少 1 个 ServletWebServerFactory Bean,因此,如果您已经拥有 spring-boot-starter-tomcaty ou,则需要自动配置该 Bean 或手动执行此操作

因此,在测试中,只有2个配置类来加载appramentContext,它们是= { WebsocketSourceConfiguration.class, WebSocketSourceIntegrationTests.class },那么至少在其中一个类中应该有一个@Bean方法返回所需的ServletWebServerFactory的实例。

* 解决方案 *

确保加载配置类中的所有 Bean

WebsocketSourceConfiguration {
  @Bean 
  ServletWebServerFactory servletWebServerFactory(){
  return new TomcatServletWebServerFactory();
  }
}

或者还可以启用自动配置以对这些 Bean 执行类路径扫描和自动配置。

@EnableAutoConfiguration
WebsocketSourceConfiguration

也可以在集成测试类中完成。

@EnableAutoConfiguration
WebSocketSourceIntegrationTests

有关更多信息,请查看SpringBootTest注释文档 https://docs.spring.io/spring-boot/docs/current/api/org/springframework/boot/test/context/SpringBootTest.html


答案 2

2.0.5.RELEASE中,当我遇到以下情况时,我遇到了类似的问题。

package radon;
..
@SpringBootApplication
public class Initializer {
    public static void main(String[] args) {
        SpringApplication.run(Config.class, args);
    }
}

package radon.app.config;
@Configuration
@ComponentScan({ "radon.app" })
public class Config {
    ..
}

将初始值设定项的包从 更改为 修复了此问题。radonradon.app


推荐