Example usage for org.springframework.http.server.reactive.bootstrap ReactorHttpServer ReactorHttpServer

List of usage examples for org.springframework.http.server.reactive.bootstrap ReactorHttpServer ReactorHttpServer

Introduction

In this page you can find the example usage for org.springframework.http.server.reactive.bootstrap ReactorHttpServer ReactorHttpServer.

Prototype

ReactorHttpServer

Source Link

Usage

From source file:org.springframework.http.server.reactive.AbstractHttpHandlerIntegrationTests.java

@Parameterized.Parameters(name = "server [{0}]")
public static Object[][] arguments() {
    File base = new File(System.getProperty("java.io.tmpdir"));
    return new Object[][] { { new JettyHttpServer() }, { new ReactorHttpServer() },
            { new TomcatHttpServer(base.getAbsolutePath()) }, { new UndertowHttpServer() } };
}