See: Description
| Interface | Description |
|---|---|
| RequestParameter |
Request parameter holder
|
| RequestParameters |
Container for request parameters
|
HTTPRequestValidationHandler:
[source,$lang]
----
examples.ValidationExamples#example1
----
Then you can mount your validation handler:
[source,$lang]
----
examples.ValidationExamples#example2
----
If validation succeeds, It returns request parameters inside RequestParameters, otherwise It will throw a ValidationException
=== Types of request parameters
Every parameter has a type validator, a class that describes the expected type of parameter.
A type validator validates the value, casts it in required language type and then loads it inside a RequestParameter object. There are three ways to describe the type of your parameter:
* There is a set of prebuilt types that you can use: ParameterType
* You can instantiate a custom instance of prebuilt type validators using static methods of ParameterTypeValidator and then load it into HTTPRequestValidationHandler using functions ending with `WithCustomTypeValidator`
* You can create your own `ParameterTypeValidator` implementing ParameterTypeValidator interface
=== Handling parameters
Now you can handle parameter values:
[source,$lang]
----
examples.ValidationExamples#example3
----
As you can see, every parameter is mapped in respective language objects. You can also get a json body:
[source,$lang]
----
examples.ValidationExamples#example4
----
== OpenAPI 3 support
Vert.x allows you to use your OpenApi 3 specification directly inside your code using the design first approach. Vert.x-Web provides:
* OpenAPI 3 compliant API specification validation with automatic **loading of external Json schemas**
* Automatic request validation
* Automatic mount of security validation handlers
* Automatic 501 response for not implemented operations
* Router factory to provide all these features to users
You can also use the community project https://github.com/pmlopes/slush-vertx[`slush-vertx`] to generate server code from your OpenAPI 3 specification.
=== The router factory
You can create your web service based on OpenAPI3 specification with OpenAPI3RouterFactory.
This class, as name says, is a router factory based on your OpenAPI 3 specification.
OpenAPI3RouterFactory is intended to give you a really simple user interface to use OpenAPI 3 support. It includes:
* Async loading of specification and its schema dependencies
* Mount path with operationId or with combination of path and HTTP method
* Automatic request parameters validation
* Automatic convert OpenAPI style paths to Vert.x style paths
* Lazy methods: operations (combination of paths and HTTP methods) are mounted in declaration order inside specification
* Automatic mount of security validation handlers
=== Create a new router factory
To create a new router factory, Use method OpenAPI3RouterFactory.create(io.vertx.core.Vertx, java.lang.String, io.vertx.core.Handler).
As location It accepts absolute paths, local paths and local or remote URLs (HTTP or file protocol).
For example:
[source,$lang]
----
examples.OpenAPI3Examples#constructRouterFactory
----
You can also construct a router factory from a remote spec:
[source,$lang]
----
examples.OpenAPI3Examples#constructRouterFactoryFromUrl
----
You can also modify the behaviours of the router factory with RouterFactoryOptions.
For example you can ask to router factory to mount the validation failure handler but to not mount the not implemented handler as follows:
[source,$lang]
----
examples.OpenAPI3Examples#mountOptions
----
=== Mount the handlers
Now load your first path. There are two functions to load the handlers:
* RouterFactory.addHandler(io.vertx.core.http.HttpMethod, java.lang.String, io.vertx.core.Handler)
* OpenAPI3RouterFactory.addHandlerByOperationId(java.lang.String, io.vertx.core.Handler)
And, of course, two functions to load failure handlers
* RouterFactory.addFailureHandler(io.vertx.core.http.HttpMethod, java.lang.String, io.vertx.core.Handler)
* OpenAPI3RouterFactory.addFailureHandlerByOperationId(java.lang.String, io.vertx.core.Handler)
You can, of course, **add multiple handlers to same operation**, without overwrite the existing ones.
.Path in OpenAPI format
IMPORTANT: If you want to use RouterFactory.addHandler(io.vertx.core.http.HttpMethod, java.lang.String, io.vertx.core.Handler) or RouterFactory.addFailureHandler(io.vertx.core.http.HttpMethod, java.lang.String, io.vertx.core.Handler) pay attention: You can provide a path only in OpenAPI styles (for example path `/hello/:param` doesn't work)
For example:
[source,$lang]
----
examples.OpenAPI3Examples#addRoute
----
.Add operations with operationId
IMPORTANT: Usage of combination of path and HTTP method is allowed, but it's better to add operations handlers with operationId, for performance reasons and to avoid paths nomenclature errors
Now you can use parameter values as described above
== Define security handlers
A security handler is defined by a combination of schema name and scope. You can mount only one security handler for a combination.
For example:
[source,$lang]
----
examples.OpenAPI3Examples#addSecurityHandler
----
You can of course use included Vert.x security handlers, for example:
[source,$lang]
----
examples.OpenAPI3Examples#addJWT
----
=== Customize the router factory behaviours
The router factory allows you to customize some behaviours during router generation with
RouterFactoryOptions. Router factory can:
* Mount a 501 `Not Implemented` handler for operations where you haven't mounted any handler
* Mount a 400 `Bad Request` handler that manages `ValidationException`
* Mount the ResponseContentTypeHandler handler when needed
Give a deeper look at RouterFactoryOptions documentation
=== Generate the router
When you are ready, generate the router and use it:
[source,$lang]
----
examples.OpenAPI3Examples#generateRouter
----Copyright © 2018 Eclipse. All rights reserved.