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

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

Introduction

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

Prototype

public TomcatHttpServer(String baseDir) 

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