Class HttpsServer
HttpServer which provides support for
HTTPS.
A HttpsServer must have an associated HttpsConfigurator object
which is used to establish the SSL configuration for the SSL connections.
All other configuration is the same as for HttpServer.
- Since:
- 1.6
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic HttpsServercreate()Creates aHttpsServerinstance which is initially not bound to any local address/port.static HttpsServercreate(InetSocketAddress addr, int backlog) Create aHttpsServerinstance which will bind to the specifiedInetSocketAddress(IP address and port number).static HttpsServercreate(InetSocketAddress addr, int backlog, String path, HttpHandler handler, Filter... filters) Creates anHttpsServerinstance with an initial context.abstract HttpsConfiguratorGets this server'sHttpsConfiguratorobject, if it has been set.abstract voidSets this server'sHttpsConfiguratorobject.Methods declared in class HttpServer
bind, createContext, createContext, getAddress, getExecutor, removeContext, removeContext, setExecutor, start, stopModifier and TypeMethodDescriptionabstract voidbind(InetSocketAddress addr, int backlog) Binds a currently unboundHttpServerto the given address and port number.abstract HttpContextcreateContext(String path) Creates a HttpContext without initially specifying a handler.abstract HttpContextcreateContext(String path, HttpHandler handler) Creates aHttpContext.abstract InetSocketAddressReturns the address this server is listening onabstract ExecutorReturns this server'sExecutorobject if one was specified withHttpServer.setExecutor(Executor), ornullif none was specified.abstract voidremoveContext(HttpContext context) Removes the given context from the server.abstract voidremoveContext(String path) Removes the context identified by the given path from the server.abstract voidsetExecutor(Executor executor) Sets this server'sExecutorobject.abstract voidstart()Starts this server in a new background thread.abstract voidstop(int delay) Stops this server by closing the listening socket and disallowing any new exchanges from being processed.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
HttpsServer
protected HttpsServer()Constructor for subclasses to call.
-
-
Method Details
-
create
Creates aHttpsServerinstance which is initially not bound to any local address/port. TheHttpsServeris acquired from the currently installedHttpServerProvider. The server must be bound usingHttpServer.bind(InetSocketAddress,int)before it can be used. The server must also have aHttpsConfiguratorestablished withsetHttpsConfigurator(HttpsConfigurator).- Returns:
- an instance of
HttpsServer - Throws:
IOException- if an I/O error occurs
-
create
Create aHttpsServerinstance which will bind to the specifiedInetSocketAddress(IP address and port number). A maximum backlog can also be specified. This is the maximum number of queued incoming connections to allow on the listening socket. Queued TCP connections exceeding this limit may be rejected by the TCP implementation. TheHttpsServeris acquired from the currently installedHttpServerProvider. The server must have aHttpsConfiguratorestablished withsetHttpsConfigurator(HttpsConfigurator).- Parameters:
addr- the address to listen on, ifnullthenHttpServer.bind(InetSocketAddress,int)must be called to set the addressbacklog- the socket backlog. If this value is less than or equal to zero, then a system default value is used.- Returns:
- an instance of
HttpsServer - Throws:
BindException- if the server cannot bind to the requested address, or if the server is already boundIOException- if an I/O error occurs
-
create
public static HttpsServer create(InetSocketAddress addr, int backlog, String path, HttpHandler handler, Filter... filters) throws IOException Creates anHttpsServerinstance with an initial context.The server is created with an initial context that maps the URI
pathto the exchangehandler. The initial context is created as if by an invocation ofcreateContext(path). Thefilters, if any, are added to the initial context, in the order they are given. The returned server is not started so can be configured further if required.The server instance will bind to the given
InetSocketAddress.A maximum backlog can also be specified. This is the maximum number of queued incoming connections to allow on the listening socket. Queued TCP connections exceeding this limit may be rejected by the TCP implementation. The HttpsServer is acquired from the currently installed
HttpServerProvider.The server must have an HttpsConfigurator established with
setHttpsConfigurator(HttpsConfigurator).- Parameters:
addr- the address to listen on, ifnullthenbindmust be called to set the addressbacklog- the socket backlog. If this value is less than or equal to zero, then a system default value is usedpath- the root URI path of the context, must be absolutehandler- the HttpHandler for the contextfilters- the Filters for the context, optional- Returns:
- the HttpsServer
- Throws:
BindException- if the server cannot bind to the addressIOException- if an I/O error occursIllegalArgumentException- if path is invalidNullPointerException- if any of:path,handler,filters, or any element offilters, arenull- Since:
- 18
-
setHttpsConfigurator
Sets this server'sHttpsConfiguratorobject.- Parameters:
config- theHttpsConfiguratorto set- Throws:
NullPointerException- if config isnull
-
getHttpsConfigurator
Gets this server'sHttpsConfiguratorobject, if it has been set.- Returns:
- the
HttpsConfiguratorfor this server, ornullif not set
-