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

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

Introduction

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

Prototype

UndertowHttpServer

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() } };
}