Spring reactive ReactorNettyWebSocketClient not logging anything
问题 I've created a simple demo application to familiarize myself with the new WebSocketClient. I found a tutorial at: https://stackify.com/reactive-spring-5/ (Reactive WebSocket Clients): @Bean CommandLineRunner demo() { return args -> { Flux<String> input = Flux.<String>generate(sink -> sink.next("This is a test")) .delayElements(Duration.ofSeconds(1)); WebSocketClient client = new ReactorNettyWebSocketClient(); client.execute(new URI("ws://echo.websocket.org"), session -> session.send(input.map