/*
 * Copyright 2012-2020 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.boot.web.server;

import java.net.InetAddress;
import java.util.Set;

A configurable WebServerFactory.
Author:Phillip Webb, Brian Clozel
See Also:
Since:2.0.0
/** * A configurable {@link WebServerFactory}. * * @author Phillip Webb * @author Brian Clozel * @since 2.0.0 * @see ErrorPageRegistry */
public interface ConfigurableWebServerFactory extends WebServerFactory, ErrorPageRegistry {
Sets the port that the web server should listen on. If not specified port '8080' will be used. Use port -1 to disable auto-start (i.e start the web application context but not have it listen to any port).
Params:
  • port – the port to set
/** * Sets the port that the web server should listen on. If not specified port '8080' * will be used. Use port -1 to disable auto-start (i.e start the web application * context but not have it listen to any port). * @param port the port to set */
void setPort(int port);
Sets the specific network address that the server should bind to.
Params:
  • address – the address to set (defaults to null)
/** * Sets the specific network address that the server should bind to. * @param address the address to set (defaults to {@code null}) */
void setAddress(InetAddress address);
Sets the error pages that will be used when handling exceptions.
Params:
  • errorPages – the error pages
/** * Sets the error pages that will be used when handling exceptions. * @param errorPages the error pages */
void setErrorPages(Set<? extends ErrorPage> errorPages);
Sets the SSL configuration that will be applied to the server's default connector.
Params:
  • ssl – the SSL configuration
/** * Sets the SSL configuration that will be applied to the server's default connector. * @param ssl the SSL configuration */
void setSsl(Ssl ssl);
Sets a provider that will be used to obtain SSL stores.
Params:
  • sslStoreProvider – the SSL store provider
/** * Sets a provider that will be used to obtain SSL stores. * @param sslStoreProvider the SSL store provider */
void setSslStoreProvider(SslStoreProvider sslStoreProvider);
Sets the HTTP/2 configuration that will be applied to the server.
Params:
  • http2 – the HTTP/2 configuration
/** * Sets the HTTP/2 configuration that will be applied to the server. * @param http2 the HTTP/2 configuration */
void setHttp2(Http2 http2);
Sets the compression configuration that will be applied to the server's default connector.
Params:
  • compression – the compression configuration
/** * Sets the compression configuration that will be applied to the server's default * connector. * @param compression the compression configuration */
void setCompression(Compression compression);
Sets the server header value.
Params:
  • serverHeader – the server header value
/** * Sets the server header value. * @param serverHeader the server header value */
void setServerHeader(String serverHeader);
Sets the shutdown configuration that will be applied to the server.
Params:
  • shutdown – the shutdown configuration
Since:2.3.0
/** * Sets the shutdown configuration that will be applied to the server. * @param shutdown the shutdown configuration * @since 2.3.0 */
default void setShutdown(Shutdown shutdown) { } }