All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.webbitserver.WebServer Maven / Gradle / Ivy

package org.webbitserver;

import java.io.InputStream;

/**
 * 

Configures an event based webserver.

*

*

To create an instance, use {@link WebServers#createWebServer(int)}.

*

*

As with many of the interfaces in webbitserver, setter style methods return a * reference to this, to allow for simple initialization using method chaining.

*

*

Hello World Example

*
 * class HelloWorldHandler implements HttpHandler {
 *   void handleHttpRequest(HttpRequest request, HttpResponse response, HttpControl control) {
 *     response.header("Content-Type", "text/html")
 *             .content("Hello World")
 *             .end();
 *   }
 * }
 * WebServer webServer = WebServers.createWebServer(8080)
 *                                 .add(new HelloWorldHandler());
 * webServer.start();
 * print("Point your browser to " + webServer.getUri());
 * 
*

*

Serving Static Files

*
 * WebServer webServer = WebServers.createWebServer(8080)
 *                                 .add(new StaticFileHandler("./wwwdata"));
 * webServer.start();
 * 
* * @author Joe Walnes * @see WebServers * @see HttpHandler * @see WebSocketConnection * @see EventSourceConnection */ public interface WebServer extends Endpoint { /** * Add an HttpHandler. When a request comes in the first HttpHandler will be invoked. * The HttpHandler should either handle the request, or pass the request onto the * next HttpHandler (using {@link HttpControl#nextHandler()}). This is repeated * until a HttpHandler returns a response. If there are no remaining handlers, the * webserver shall return 404 NOT FOUND to the browser. *

* HttpHandlers are attempted in the order in which they are added to the WebServer. * * @see HttpHandler */ WebServer add(HttpHandler handler); /** * Add an HttpHandler that will only respond to a certain path (e.g "/some/page"). *

* This is shortcut for {@code add(newPathMatchHandler(path, handler))}. * * @see HttpHandler * @see #add(HttpHandler) * @see org.webbitserver.handler.PathMatchHandler */ WebServer add(String path, HttpHandler handler); /** * Add a WebSocketHandler for dealing with WebSockets. *

* This is shortcut for {@code add(new PathMatchHandler(path, newHttpToWebSocketHandler(handler)))}. * * @see WebSocketHandler * @see HttpHandler * @see #add(HttpHandler) * @see org.webbitserver.handler.HttpToWebSocketHandler * @see org.webbitserver.handler.PathMatchHandler */ WebServer add(String path, WebSocketHandler handler); /** * Add a WebSocketHandler for dealing with WebSockets. *

* This is shortcut for {@code add(new PathMatchHandler(path, newHttpToEventSourceHandler(handler)))}. * * @see HttpHandler * @see #add(HttpHandler) * @see org.webbitserver.handler.HttpToEventSourceHandler * @see org.webbitserver.handler.PathMatchHandler */ WebServer add(String path, EventSourceHandler handler); /** * Get base port that webserver is serving on. */ int getPort(); /** * Number of milliseconds before a stale HTTP keep-alive connection is closed by the server. A HTTP connection * is considered stale if it remains open without sending more data within the timeout window. */ WebServer staleConnectionTimeout(long millis); /** * Setup SSL/TLS handler * * @param keyStore Keystore InputStream * @param storePass Store password * @param keyPass Key password * @return current WebServer instance * @throws org.webbitserver.WebbitException * A problem loading the keystore * @see #setupSsl(String, String, String) */ WebServer setupSsl(InputStream keyStore, String storePass, String keyPass) throws WebbitException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy