Package com.linecorp.armeria.server
Class VirtualHostContextPathServiceBindingBuilder
java.lang.Object
com.linecorp.armeria.server.VirtualHostContextPathServiceBindingBuilder
A builder class for binding an
HttpService fluently. This class can be instantiated through
VirtualHostBuilder.contextPath(String...).
Call build(HttpService) to build the HttpService and return
to the VirtualHostBuilder.
Server.builder()
.virtualHost("foo.com")
.contextPath("/v3")
.route()
.get("/service2")
.build(service2); // served under "/v3/service2"
-
Method Summary
Modifier and TypeMethodDescriptionaccessLogFormat(String accessLogFormat) accessLogWriter(AccessLogWriter accessLogWriter, boolean shutdownOnStop) addHeader(CharSequence name, Object value) addHeaders(Iterable<? extends Map.Entry<? extends CharSequence, ?>> defaultHeaders) Specifies an additionalRoutethat should be matched.blockingTaskExecutor(int numThreads) blockingTaskExecutor(BlockingTaskExecutor blockingTaskExecutor, boolean shutdownOnStop) blockingTaskExecutor(ScheduledExecutorService blockingTaskExecutor, boolean shutdownOnStop) build(HttpService service) Sets theHttpServiceand returns the object that thisVirtualHostContextPathServicesBuilderwas created from.Sets the path pattern that anHttpServicewill be bound to, only supportingHttpMethod.CONNECTrequests.SetsMediaTypes that anHttpServicewill consume.SetsMediaTypes that anHttpServicewill consume.contextHook(Supplier<? extends AutoCloseable> contextHook) decorator(DecoratingHttpServiceFunction decoratingHttpServiceFunction) decorator(Function<? super HttpService, ? extends HttpService> decorator) decorators(Iterable<? extends Function<? super HttpService, ? extends HttpService>> decorators) decorators(Function<? super HttpService, ? extends HttpService>... decorators) defaultLogName(String defaultLogName) defaultServiceName(String defaultServiceName) defaultServiceNaming(ServiceNaming defaultServiceNaming) Sets the path pattern that anHttpServicewill be bound to, only supportingHttpMethod.DELETErequests.errorHandler(ServiceErrorHandler serviceErrorHandler) Adds apathPatternthat is supposed to be excluded from theRoutes built by thisAbstractBindingBuilder.Sets the path pattern that anHttpServicewill be bound to, only supportingHttpMethod.GETrequests.Sets the path pattern that anHttpServicewill be bound to, only supportingHttpMethod.HEADrequests.matchesHeaders(CharSequence headerName, Predicate<? super String> valuePredicate) Sets theRouteto accept a request when the specifiedvaluePredicateevaluatestruewith the value of the specifiedheaderNameheader.matchesHeaders(Iterable<String> headerPredicates) Sets theRouteto accept a request if it matches all the specified predicates forHttpHeaders.matchesHeaders(String... headerPredicates) Sets theRouteto accept a request if it matches all the specified predicates forHttpHeaders.matchesParams(Iterable<String> paramPredicates) Sets theRouteto accept a request if it matches all the specified predicates for HTTP parameters.matchesParams(String... paramPredicates) Sets theRouteto accept a request if it matches all the specified predicates for HTTP parameters.matchesParams(String paramName, Predicate<? super String> valuePredicate) Sets theRouteto accept a request when the specifiedvaluePredicateevaluatestruewith the value of the specifiedparamNameparameter.maxRequestLength(long maxRequestLength) methods(HttpMethod... methods) Sets theHttpMethods that anHttpServicewill support.methods(Iterable<HttpMethod> methods) Sets theHttpMethods that anHttpServicewill support.multipartUploadsLocation(Path multipartUploadsLocation) Sets the path pattern that anHttpServicewill be bound to, only supportingHttpMethod.OPTIONSrequests.Sets the path pattern that anHttpServicewill be bound to, only supportingHttpMethod.PATCHrequests.Sets the path pattern that anHttpServicewill be bound to.pathPrefix(String prefix) Sets the specified prefix which is a directory that anHttpServicewill be bound under.Sets the path pattern that anHttpServicewill be bound to, only supportingHttpMethod.POSTrequests.SetsMediaTypes that anHttpServicewill produce to be used in content negotiation.SetsMediaTypes that anHttpServicewill produce to be used in content negotiation.Sets the path pattern that anHttpServicewill be bound to, only supportingHttpMethod.PUTrequests.requestAutoAbortDelay(Duration delay) requestAutoAbortDelayMillis(long delayMillis) requestIdGenerator(Function<? super RoutingContext, ? extends RequestId> requestIdGenerator) requestTimeout(Duration requestTimeout) requestTimeoutMillis(long requestTimeoutMillis) setHeader(CharSequence name, Object value) setHeaders(Iterable<? extends Map.Entry<? extends CharSequence, ?>> defaultHeaders) successFunction(SuccessFunction successFunction) Sets the path pattern that anHttpServicewill be bound to, only supportingHttpMethod.TRACErequests.verboseResponses(boolean verboseResponses)
-
Method Details
-
requestTimeout
-
requestTimeoutMillis
-
maxRequestLength
-
verboseResponses
-
accessLogFormat
-
accessLogWriter
public VirtualHostContextPathServiceBindingBuilder accessLogWriter(AccessLogWriter accessLogWriter, boolean shutdownOnStop) -
decorator
public VirtualHostContextPathServiceBindingBuilder decorator(DecoratingHttpServiceFunction decoratingHttpServiceFunction) -
decorator
public VirtualHostContextPathServiceBindingBuilder decorator(Function<? super HttpService, ? extends HttpService> decorator) -
decorators
public VirtualHostContextPathServiceBindingBuilder decorators(Function<? super HttpService, ? extends HttpService>... decorators) -
decorators
public VirtualHostContextPathServiceBindingBuilder decorators(Iterable<? extends Function<? super HttpService, ? extends HttpService>> decorators) -
defaultServiceName
-
defaultServiceNaming
public VirtualHostContextPathServiceBindingBuilder defaultServiceNaming(ServiceNaming defaultServiceNaming) -
defaultLogName
-
blockingTaskExecutor
public VirtualHostContextPathServiceBindingBuilder blockingTaskExecutor(ScheduledExecutorService blockingTaskExecutor, boolean shutdownOnStop) -
blockingTaskExecutor
public VirtualHostContextPathServiceBindingBuilder blockingTaskExecutor(BlockingTaskExecutor blockingTaskExecutor, boolean shutdownOnStop) -
blockingTaskExecutor
-
successFunction
-
requestAutoAbortDelay
-
requestAutoAbortDelayMillis
-
multipartUploadsLocation
public VirtualHostContextPathServiceBindingBuilder multipartUploadsLocation(Path multipartUploadsLocation) -
requestIdGenerator
public VirtualHostContextPathServiceBindingBuilder requestIdGenerator(Function<? super RoutingContext, ? extends RequestId> requestIdGenerator) -
addHeader
-
addHeaders
public VirtualHostContextPathServiceBindingBuilder addHeaders(Iterable<? extends Map.Entry<? extends CharSequence, ?>> defaultHeaders) -
setHeader
-
setHeaders
public VirtualHostContextPathServiceBindingBuilder setHeaders(Iterable<? extends Map.Entry<? extends CharSequence, ?>> defaultHeaders) -
errorHandler
public VirtualHostContextPathServiceBindingBuilder errorHandler(ServiceErrorHandler serviceErrorHandler) -
contextHook
public VirtualHostContextPathServiceBindingBuilder contextHook(Supplier<? extends AutoCloseable> contextHook) -
path
Sets the path pattern that anHttpServicewill be bound to. Please refer to the Path patterns in order to learn how to specify a path pattern. -
pathPrefix
Sets the specified prefix which is a directory that anHttpServicewill be bound under.pathPrefix("/my/path")is identical topath("prefix:/my/path"). -
get
Sets the path pattern that anHttpServicewill be bound to, only supportingHttpMethod.GETrequests. Please refer to the Path patterns in order to learn how to specify a path pattern. -
post
Sets the path pattern that anHttpServicewill be bound to, only supportingHttpMethod.POSTrequests. Please refer to the Path patterns in order to learn how to specify a path pattern. -
put
Sets the path pattern that anHttpServicewill be bound to, only supportingHttpMethod.PUTrequests. Please refer to the Path patterns in order to learn how to specify a path pattern. -
patch
Sets the path pattern that anHttpServicewill be bound to, only supportingHttpMethod.PATCHrequests. Please refer to the Path patterns in order to learn how to specify a path pattern. -
delete
Sets the path pattern that anHttpServicewill be bound to, only supportingHttpMethod.DELETErequests. Please refer to the Path patterns in order to learn how to specify a path pattern. -
options
Sets the path pattern that anHttpServicewill be bound to, only supportingHttpMethod.OPTIONSrequests. Please refer to the Path patterns in order to learn how to specify a path pattern. -
head
Sets the path pattern that anHttpServicewill be bound to, only supportingHttpMethod.HEADrequests. Please refer to the Path patterns in order to learn how to specify a path pattern. -
trace
Sets the path pattern that anHttpServicewill be bound to, only supportingHttpMethod.TRACErequests. Please refer to the Path patterns in order to learn how to specify a path pattern. -
connect
Sets the path pattern that anHttpServicewill be bound to, only supportingHttpMethod.CONNECTrequests. Please refer to the Path patterns in order to learn how to specify a path pattern. -
methods
Sets theHttpMethods that anHttpServicewill support. If not set,HttpMethod.knownMethods()s are set.- See Also:
-
methods
Sets theHttpMethods that anHttpServicewill support. If not set,HttpMethod.knownMethods()s are set.- See Also:
-
consumes
SetsMediaTypes that anHttpServicewill consume. If not set, theHttpServicewill accept all media types. -
consumes
SetsMediaTypes that anHttpServicewill consume. If not set, theHttpServicewill accept all media types. -
produces
SetsMediaTypes that anHttpServicewill produce to be used in content negotiation. See Accept header for more information. -
produces
SetsMediaTypes that anHttpServicewill produce to be used in content negotiation. See Accept header for more information. -
matchesParams
Sets theRouteto accept a request if it matches all the specified predicates for HTTP parameters. The predicate can be one of the following forms:some-param=some-valuewhich means that the request must have asome-param=some-valueparametersome-param!=some-valuewhich means that the request must not have asome-param=some-valueparametersome-paramwhich means that the request must contain asome-paramparameter!some-paramwhich means that the request must not contain asome-paramparameter
Note that these predicates can be evaluated only with the query string of the request URI. Also note that each predicate will be evaluated with the decoded value of HTTP parameters, so do not use percent-encoded value in the predicate.
- See Also:
-
matchesParams
Sets theRouteto accept a request if it matches all the specified predicates for HTTP parameters. The predicate can be one of the following forms:some-param=some-valuewhich means that the request must have asome-param=some-valueparametersome-param!=some-valuewhich means that the request must not have asome-param=some-valueparametersome-paramwhich means that the request must contain asome-paramparameter!some-paramwhich means that the request must not contain asome-paramparameter
Note that these predicates can be evaluated only with the query string of the request URI. Also note that each predicate will be evaluated with the decoded value of HTTP parameters, so do not use percent-encoded value in the predicate.
- See Also:
-
matchesParams
public VirtualHostContextPathServiceBindingBuilder matchesParams(String paramName, Predicate<? super String> valuePredicate) Sets theRouteto accept a request when the specifiedvaluePredicateevaluatestruewith the value of the specifiedparamNameparameter. -
matchesHeaders
Sets theRouteto accept a request if it matches all the specified predicates forHttpHeaders. The predicate can be one of the following forms:some-header=some-valuewhich means that the request must have asome-header: some-valueheadersome-header!=some-valuewhich means that the request must not have asome-header: some-valueheadersome-headerwhich means that the request must contain asome-headerheader!some-headerwhich means that the request must not contain asome-headerheader
- See Also:
-
matchesHeaders
public VirtualHostContextPathServiceBindingBuilder matchesHeaders(Iterable<String> headerPredicates) Sets theRouteto accept a request if it matches all the specified predicates forHttpHeaders. The predicate can be one of the following forms:some-header=some-valuewhich means that the request must have asome-header: some-valueheadersome-header!=some-valuewhich means that the request must not have asome-header: some-valuean headersome-headerwhich means that the request must contain asome-headerheader!some-headerwhich means that the request must not contain asome-headerheader
- See Also:
-
matchesHeaders
public VirtualHostContextPathServiceBindingBuilder matchesHeaders(CharSequence headerName, Predicate<? super String> valuePredicate) Sets theRouteto accept a request when the specifiedvaluePredicateevaluatestruewith the value of the specifiedheaderNameheader. -
addRoute
Specifies an additionalRoutethat should be matched. -
exclude
Adds apathPatternthat is supposed to be excluded from theRoutes built by thisAbstractBindingBuilder. Please refer to Path patterns to learn more about path pattern syntax. -
exclude
-
build
Sets theHttpServiceand returns the object that thisVirtualHostContextPathServicesBuilderwas created from.
-