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

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

Introduction

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

Prototype

void afterPropertiesSet() throws Exception;

Source Link

Document

Invoked by the containing BeanFactory after it has set all bean properties and satisfied BeanFactoryAware , ApplicationContextAware etc.

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