Interface Route
public interface Route
A route is a holder for a set of criteria which determine whether an HTTP request or failure should be routed
to a handler.
- Author:
- Tim Fox
-
Method Summary
Modifier and TypeMethodDescriptionblockingHandler(Handler<RoutingContext> requestHandler) LikeblockingHandler(Handler, boolean)called with ordered = trueblockingHandler(Handler<RoutingContext> requestHandler, boolean ordered) Specify a blocking request handler for the route.Add a content type consumed by this route.disable()Disable this route.enable()Enable this route.failureHandler(Handler<RoutingContext> failureHandler) Append a failure handler to the route failure handlers list.default <T> TgetMetadata(String key) Get some data from metadata.getName()getPath()handler(Handler<RoutingContext> requestHandler) Append a request handler to the route handlers list.booleanReturns true of the path doesn't end with a wildcard*or isnull.booleanReturns true of the path is a regular expression, this includes expression paths.last()Specify this is the last route for the router.metadata()method(HttpMethod method) Add an HTTP method for this route.methods()order(int order) Specify the order for this route.Set the path prefix for this route.Set the path prefix as a regular expression.Add a content type produced by this route.putMetadata(String key, Object value) Put metadata to this route.remove()Remove this route from the routerdefault <T> Routerespond(Function<RoutingContext, Future<T>> function) Append a function request handler to the route handlers list.Giving a name to a route will provide this name as metadata to requests matching this route.setRegexGroupsNames(List<String> groups) When you add a new route with a regular expression, you can add named capture groups for parameters.Use a (sub)Routeras a handler.useNormalizedPath(boolean useNormalizedPath) If true then the normalized request path will be used when routing (e.g. removing duplicate /) Default is truevirtualHost(String hostnamePattern) Add a virtual host filter for this route.
-
Method Details
-
putMetadata
-
method
Add an HTTP method for this route. By default a route will match all HTTP methods. If any are specified then the route will only match any of the specified methods- Parameters:
method- the HTTP method to add- Returns:
- a reference to this, so the API can be used fluently
-
path
Set the path prefix for this route. If set then this route will only match request URI paths which start with this path prefix. Only a single path or path regex can be set for a route.- Parameters:
path- the path prefix- Returns:
- a reference to this, so the API can be used fluently
-
pathRegex
Set the path prefix as a regular expression. If set then this route will only match request URI paths, the beginning of which match the regex. Only a single path or path regex can be set for a route.- Parameters:
path- the path regex- Returns:
- a reference to this, so the API can be used fluently
-
produces
-
consumes
-
virtualHost
-
order
Specify the order for this route. The router tests routes in that order.- Parameters:
order- the order- Returns:
- a reference to this, so the API can be used fluently
-
last
Route last()Specify this is the last route for the router.- Returns:
- a reference to this, so the API can be used fluently
-
handler
Append a request handler to the route handlers list. The router routes requests to handlers depending on whether the various criteria such as method, path, etc match. When method, path, etc are the same for different routes, You should add multiple handlers to the same route object rather than creating two different routes objects with one handler for route- Parameters:
requestHandler- the request handler- Returns:
- a reference to this, so the API can be used fluently
-
blockingHandler
LikeblockingHandler(Handler, boolean)called with ordered = true -
subRouter
Use a (sub)Routeras a handler. There are several requirements to be fulfilled for this to be accepted.- The route path must end with a wild card
- Parameters are allowed but full regex patterns not
- No other handler can be registered before or after this call (but they can on a new route object for the same path)
- Only 1 router per path object
- Parameters:
subRouter- the router to add- Returns:
- a reference to this, so the API can be used fluently
-
getSubRouter
Router getSubRouter()- Returns:
- the sub router if this route acts as a sub router,
nullif it does not.
-
blockingHandler
Specify a blocking request handler for the route. This method works just likehandler(Handler)excepted that it will run the blocking handler on a worker thread so that it won't block the event loop. Note that it's safe to call context.next() from the blocking handler as it will be executed on the event loop context (and not on the worker thread.If the blocking handler is ordered it means that any blocking handlers for the same context are never executed concurrently but always in the order they were called. The default value of ordered is true. If you do not want this behaviour and don't mind if your blocking handlers are executed in parallel you can set ordered to false.
- Parameters:
requestHandler- the blocking request handlerordered- if true handlers are executed in sequence, otherwise are run in parallel- Returns:
- a reference to this, so the API can be used fluently
-
failureHandler
Append a failure handler to the route failure handlers list. The router routes failures to failurehandlers depending on whether the various criteria such as method, path, etc match. When method, path, etc are the same for different routes, You should add multiple failure handlers to the same route object rather than creating two different routes objects with one failure handler for route- Parameters:
failureHandler- the request handler- Returns:
- a reference to this, so the API can be used fluently
-
remove
Route remove()Remove this route from the router- Returns:
- a reference to this, so the API can be used fluently
-
disable
Route disable()Disable this route. While disabled the router will not route any requests or failures to it.- Returns:
- a reference to this, so the API can be used fluently
-
enable
-
useNormalizedPath
If true then the normalized request path will be used when routing (e.g. removing duplicate /) Default is true- Parameters:
useNormalizedPath- use normalized path for routing?- Returns:
- a reference to this, so the API can be used fluently
-
metadata
-
getMetadata
Get some data from metadata.- Type Parameters:
T- the type of the data- Parameters:
key- the key for the metadata- Returns:
- the data
-
getPath
String getPath()- Returns:
- the path prefix (if any) for this route
-
isRegexPath
boolean isRegexPath()Returns true of the path is a regular expression, this includes expression paths.- Returns:
- true if backed by a pattern.
-
isExactPath
boolean isExactPath()Returns true of the path doesn't end with a wildcard*or isnull. Regular expression paths are always assumed to be exact.- Returns:
- true if the path is exact.
-
methods
Set<HttpMethod> methods()- Returns:
- the http methods accepted by this route
-
setRegexGroupsNames
When you add a new route with a regular expression, you can add named capture groups for parameters.
However, if you need more complex parameters names (like "param_name"), you can add parameters names with this function. You have to name capture groups in regex with names: "p0", "p1", "p2", ...
For example: If you declare route with regex \/(?[a-z]*)\/(? [a-z]*) and group names ["param_a", "param-b"] for uri /hello/world you receive inside pathParams() the parameter param_a = "hello" - Parameters:
groups- group names- Returns:
- a reference to this, so the API can be used fluently
-
setName
Giving a name to a route will provide this name as metadata to requests matching this route. This metadata is used by metrics and is meant to group requests with different URI paths (due to parameters) by a common identifier, for example "/resource/:resourceID" common name- Parameters:
name- The name of the route.- Returns:
- a reference to this, so the API can be used fluently
-
getName
String getName()- Returns:
- the name of the route. If not given explicitly, the path or the pattern or null is returned (in that order)
-
respond
Append a function request handler to the route handlers list. The function expects to receive the routing context and users are expected to return aFuture. The use of this functional interface allows users to quickly link the responses from other vert.x APIs or clients directly to a handler. If the context response has been ended, for example,RoutingContext.end()has been called, then nothing shall happen. For the remaining cases, the following rules apply:- When
bodyisnullthen the status code of the response shall be 204 (NO CONTENT) - When
bodyis of typeBufferand theContent-Typeisn't set then theContent-Typeshall beapplication/octet-stream - When
bodyis of typeStringand theContent-Typeisn't set then theContent-Typeshall betext/html - Otherwise the response of the future is then passed to the method
RoutingContext.json(Object)to perform a JSON serialization of the result
- Type Parameters:
T- a generic type to allow type safe API- Parameters:
function- the request handler function- Returns:
- a reference to this, so the API can be used fluently
- When
-