Example usage for org.springframework.boot.web.server WebServer interface-usage

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

Introduction

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

Usage

From source file org.springframework.boot.web.embedded.netty.NettyWebServer.java

/**
 * {@link WebServer} that can be used to control a Reactor Netty web server. Usually this
 * class should be created using the {@link NettyReactiveWebServerFactory} and not
 * directly.
 *
 * @author Brian Clozel

From source file org.springframework.boot.web.embedded.undertow.UndertowWebServer.java

/**
 * {@link WebServer} that can be used to control an Undertow web server. Usually this
 * class should be created using the {@link UndertowReactiveWebServerFactory} and not
 * directly.
 *
 * @author Ivan Sopov

From source file org.springframework.boot.web.embedded.jetty.JettyWebServer.java

/**
 * {@link WebServer} that can be used to control a Jetty web server.
 *
 * @author Phillip Webb
 * @author Dave Syer
 * @author David Liu

From source file org.springframework.boot.web.embedded.tomcat.TomcatWebServer.java

/**
 * {@link WebServer} that can be used to control a Tomcat web server. Usually this class
 * should be created using the {@link TomcatReactiveWebServerFactory} of
 * {@link TomcatServletWebServerFactory}, but not directly.
 *
 * @author Brian Clozel

From source file org.springframework.boot.web.embedded.undertow.UndertowServletWebServer.java

/**
 * {@link WebServer} that can be used to control an embedded Undertow server. Typically
 * this class should be created using {@link UndertowServletWebServerFactory} and not
 * directly.
 *
 * @author Ivan Sopov