Example usage for org.springframework.http.server.reactive.bootstrap HttpServer setHandler

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

Introduction

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

Prototype

void setHandler(HttpHandler handler);

Source Link

Usage

From source file:playground.app.Application.java

public static void main(String[] args) throws Exception {

    HttpHandler httpHandler = createHttpHandler();

    HttpServer server = new TomcatHttpServer();
    server.setPort(8080);/*  w  w w .  ja v a2  s .  c  o m*/
    server.setHandler(httpHandler);
    server.afterPropertiesSet();
    server.start();

    CompletableFuture<Void> stop = new CompletableFuture<>();
    Runtime.getRuntime().addShutdownHook(new Thread(() -> {
        stop.complete(null);
    }));
    synchronized (stop) {
        stop.wait();
    }
}