com.linecorp.armeria.spring.ArmeriaSettings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of armeria-spring-boot-autoconfigure-shaded Show documentation
Show all versions of armeria-spring-boot-autoconfigure-shaded Show documentation
Asynchronous HTTP/2 RPC/REST client/server library built on top of Java 8, Netty, Thrift and gRPC (armeria-spring-boot-autoconfigure-shaded)
/*
* Copyright 2017 LINE Corporation
*
* LINE Corporation licenses this file to you 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 com.linecorp.armeria.spring;
import java.util.ArrayList;
import java.util.List;
import javax.annotation.Nullable;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.validation.annotation.Validated;
import com.linecorp.armeria.common.SessionProtocol;
import com.linecorp.armeria.server.Server;
import com.linecorp.armeria.server.metric.MetricCollectingService;
/**
* Settings for armeria servers, e.g.,
* {@code
* armeria:
* ports:
* - port: 8080
* protocol: HTTP
* - ip: 127.0.0.1
* port: 8081
* protocol:HTTP
* }
* TODO(ide) Adds SSL and virtualhost settings
*/
@ConfigurationProperties(prefix = "armeria")
@Validated
public class ArmeriaSettings {
/**
* Port and protocol settings.
*/
public static class Port {
/**
* IP address to bind to. If not set, will bind to all addresses, e.g. {@code 0.0.0.0}.
*/
private String ip;
/**
* Network interface to bind to. If not set, will bind to the first detected network interface.
*/
private String iface;
/**
* Port that {@link Server} binds to.
*/
private int port;
/**
* Protocol that will be used in this ip/iface and port.
*/
private SessionProtocol protocol;
/**
* Returns the IP address {@link Server} uses.
*/
@Nullable
public String getIp() {
return ip;
}
/**
* Register an IP address {@link Server} uses.
*/
public Port setIp(String ip) {
this.ip = ip;
return this;
}
/**
* Returns the network interface {@link Server} use.
*/
@Nullable
public String getIface() {
return iface;
}
/**
* Register a network interface {@link Server} use.
*/
public Port setIface(String iface) {
this.iface = iface;
return this;
}
/**
* Returns the port that {@link Server} use.
*/
public int getPort() {
return port;
}
/**
* Register a port that {@link Server} use.
*/
public Port setPort(int port) {
this.port = port;
return this;
}
/**
* Returns the {@link SessionProtocol} that {@link Server} use.
*/
public SessionProtocol getProtocol() {
return protocol;
}
/**
* Register a {@link SessionProtocol} that {@link Server} use.
*/
public Port setProtocol(SessionProtocol protocol) {
this.protocol = protocol;
return this;
}
}
/**
* The ports to listen on for requests. If not specified, will listen on
* port 8080 for HTTP (not SSL).
*/
private List ports = new ArrayList<>();
/**
* The path to serve health check requests on. Should correspond to what is
* registered in the load balancer. If not set, health check service will not
* be registered.
*/
@Nullable
private String healthCheckPath = "/internal/healthcheck";
/**
* The path to serve thrift service documentation on. Should not be exposed
* to the external network. If not set, documentation service will not be
* registered.
*/
@Nullable
private String docsPath = "/internal/docs/";
/**
* The path to serve a json dump of instantaneous metrics. Should not be
* exposed to the external network. If not set, metrics will not be exported
* on an http path (any registered reporters will still function).
*/
@Nullable
private String metricsPath = "/internal/metrics";
/**
* The number of milliseconds to wait after the last processed request to
* be considered safe for shutdown. This should be set at least as long as
* the slowest possible request to guarantee graceful shutdown. If {@code -1},
* graceful shutdown will be disabled.
*/
private long gracefulShutdownQuietPeriodMillis = 5000;
/**
* The number of milliseconds to wait after going unhealthy before forcing
* the server to shutdown regardless of if it is still processing requests.
* This should be set as long as the maximum time for the load balancer to
* turn off requests to the server. If {@code -1}, graceful shutdown will
* be disabled.
*/
private long gracefulShutdownTimeoutMillis = 40000;
/**
* Whether to decorate all services with {@link MetricCollectingService}.
* The default is {@code true}.
*/
private boolean enableMetrics = true;
public List getPorts() {
return ports;
}
public void setPorts(List ports) {
this.ports = ports;
}
@Nullable
public String getHealthCheckPath() {
return healthCheckPath;
}
public void setHealthCheckPath(@Nullable String healthCheckPath) {
this.healthCheckPath = healthCheckPath;
}
@Nullable
public String getDocsPath() {
return docsPath;
}
public void setDocsPath(@Nullable String docsPath) {
this.docsPath = docsPath;
}
@Nullable
public String getMetricsPath() {
return metricsPath;
}
public void setMetricsPath(@Nullable String metricsPath) {
this.metricsPath = metricsPath;
}
public long getGracefulShutdownQuietPeriodMillis() {
return gracefulShutdownQuietPeriodMillis;
}
public void setGracefulShutdownQuietPeriodMillis(long gracefulShutdownQuietPeriodMillis) {
this.gracefulShutdownQuietPeriodMillis = gracefulShutdownQuietPeriodMillis;
}
public long getGracefulShutdownTimeoutMillis() {
return gracefulShutdownTimeoutMillis;
}
public void setGracefulShutdownTimeoutMillis(long gracefulShutdownTimeoutMillis) {
this.gracefulShutdownTimeoutMillis = gracefulShutdownTimeoutMillis;
}
public boolean isEnableMetrics() {
return enableMetrics;
}
public void setEnableMetrics(boolean enableMetrics) {
this.enableMetrics = enableMetrics;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy