Quarkus - HTTP Reference

This document explains various HTTP features that you can use in Quarkus.

HTTP is provided using Eclipse Vert.x as the base HTTP layer. Servlet’s are supported using a modified version of Undertow thatruns on top of Vert.x, and RESTEasy is used to provide JAX-RS support. If Undertow is present RESTEasy will run as aServlet filter, otherwise it will run directly on top of Vert.x with no Servlet involvement.

1. Serving Static Resources

To serve static resources you must place them in the META-INF/resources directory of your application. This locationwas chosen as it is the standard location for resources in jar files as defined by the Servlet spec. Even thoughQuarkus can be used without Servlet following this convention allows existing code that places its resources in thislocation to function correctly.

2. Configuring the Context path

By default Quarkus will serve content from under the root context. If you want to change this you can use thequarkus.http.root-path config key to set the context path.

If you are using Servlet you can control the Servlet context path via quarkus.servlet.context-path. This item is relativeto the http root above, and will only affect Servlet and things that run on top of Servlet. Most applications willwant to use the HTTP root as this affects everything that Quarkus serves.

If both are specified then all non-Servlet web endpoints will be relative to quarkus.http.root-path, while Servlet’swill be served relative to {quarkus.http.root-path}/{quarkus.servlet.context-path}.

If Restassured is used for testing and quarkus.http.root-path is set then Quarkus will automatically configure thebase URL for use in Quarkus tests, so test URL’s should not include the root path.

3. Supporting secure connections with SSL

In order to have Undertow support secure connections, you must either provide a certificate and associated key file, or supply a keystore.

In both cases, a password must be provided. See the designated paragraph for a detailed description of how to provide it.

To enable SSL support with native executables, please refer to our Using SSL With Native Executables guide.

3.1. Providing a certificate and key file

If the certificate has not been loaded into a keystore, it can be provided directly using the properties listed below.Quarkus will first try to load the given files as resources, and uses the filesystem as a fallback.The certificate / key pair will be loaded into a newly created keystore on startup.

Your application.properties would then look like this:

  1. quarkus.http.ssl.certificate.file=/path/to/certificate
  2. quarkus.http.ssl.certificate.key-file=/path/to/key

3.2. Providing a keystore

An alternate solution is to directly provide a keystore which already contains a default entry with a certificate You will need to at least provide the file and a password.

As with the certificate/key file combination, Quarkus will first try to resolve the given path as a resource, before attempting to read it from the filesystem.

Add the following property to your application.properties:

  1. quarkus.http.ssl.certificate.key-store-file=/path/to/keystore

As an optional hint, the type of keystore can be provided as one of the options listed.If the type is not provided, Quarkus will try to deduce it from the file extensions, defaulting to type JKS.

  1. quarkus.http.ssl.certificate.key-store-file-type=[one of JKS, JCEKS, P12, PKCS12, PFX]

3.3. Setting the password

In both aforementioned scenarios, a password needs to be provided to create/load the keystore with.The password can be set in your application.properties (in plain-text) using the following property:

  1. quarkus.http.ssl.certificate.key-store-password=your-password

However, instead of providing the password as plain-text in the configuration file (which is considered bad practice), it can instead be supplied (using MicroProfile config)as the environment variable QUARKUS_HTTP_SSL_CERTIFICATE_KEY_STORE_PASSWORD.This will also work in tandem with Kubernetes secrets.

Note: in order to remain compatible with earlier versions of Quarkus (before 0.16) the default password is set to "password". It is therefore not a mandatory parameter!

4. CORS filter

Cross-origin resource sharing (CORS) is a mechanism thatallows restricted resources on a web page to be requested from another domain outside the domain from which the first resourcewas served.

Quarkus comes with a CORS filter which implements the javax.servlet.Filter interface and intercepts all incoming HTTPrequests. It can be enabled in the Quarkus configuration file, src/main/resources/application.properties:

  1. quarkus.http.cors=true

If the filter is enabled and an HTTP request is identified as cross-origin, the CORS policy and headers defined using thefollowing properties will be applied before passing the request on to its actual target (servlet, JAX-RS resource, etc.):

Property NameDefaultDescription
quarkus.http.cors.originsThe comma-separated list of origins allowed for CORS. The filter allows any origin if this is notset.
quarkus.http.cors.methodsThe comma-separated list of HTTP methods allowed for CORS. The filter allows any method if this isnot set.
quarkus.http.cors.headersThe comma-separated list of HTTP headers allowed for CORS. The filter allows any header if this isnot set.
quarkus.http.cors.exposed-headersThe comma-separated list of HTTP headers exposed in CORS.
quarkus.http.cors.access-control-max-ageThe duration (see note below) indicating how long the results of a pre-flight request can be cached.This value will be returned in a Access-Control-Max-Age response header.
The format for durations uses the standard java.time.Duration format.You can learn more about it in the Duration#parse() javadoc.You can also provide duration values starting with a number.In this case, if the value consists only of a number, the converter treats the value as seconds.Otherwise, PT is implicitly prepended to the value to obtain a standard java.time.Duration format.

Here’s what a full CORS filter configuration could look like:

  1. quarkus.http.cors=true
  2. quarkus.http.cors.origins=http://foo.com,http://www.bar.io
  3. quarkus.http.cors.methods=GET,PUT,POST
  4. quarkus.http.cors.headers=X-Custom
  5. quarkus.http.cors.exposed-headers=Content-Disposition
  6. quarkus.http.cors.access-control-max-age=24H

5. Http Limits Configuration

The following properties are supported.

Property NameDefaultDescription
quarkus.http.limits.max-body-sizeunlimitedThe maximum size of request body.
quarkus.http.limits.max-header-size2OKThe maximum length of all headers.
The following config options would recognize strings in this format (shown as a regular expression): [0-9]+[KkMmGgTtPpEeZzYy]?. If no suffix is given, assume bytes.-quarkus.http.limits.max-body-size,-quarkus.http.limits.max-header-size

6. Servlet Config

To use Servlet you need to explicitly include quarkus-undertow:

  1. <dependency>
  2. <groupId>io.quarkus</groupId>
  3. <artifactId>quarkus-undertow</artifactId>
  4. </dependency>

6.1. undertow-handlers.conf

You can make use of the Undertow predicate language using an undertow-handlers.conf file. This file should be placedin the META-INF directory of your application jar. This file contains handlers defined using theUndertow predicate language.

6.2. web.xml

If you are using a web.xml file as your configuration file, you can place it in the src/main/resources/META-INF directory.