Example usage for org.springframework.boot.web.server WebServer start

List of usage examples for org.springframework.boot.web.server WebServer start

Introduction

In this page you can find the example usage for org.springframework.boot.web.server WebServer start.

Prototype

void start() throws WebServerException;

Source Link

Document

Starts the web server.

Usage

From source file:org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.java

private WebServer startWebServer() {
    WebServer webServer = this.webServer;
    if (webServer != null) {
        webServer.start();
    }//from w  w w.ja v a  2 s  .  c  om
    return webServer;
}