Class OptionsFilter

java.lang.Object
io.micronaut.http.server.OptionsFilter
All Implemented Interfaces:
Ordered

@Requires(property="micronaut.server.dispatch-options-requests", value="true", defaultValue="false") @ServerFilter("/**") @Internal public final class OptionsFilter extends Object implements Ordered
This Filter intercepts HTTP OPTIONS requests which are not CORS Preflight requests. It responds with a NO_CONTENT(204) response, and it populates the Allow HTTP Header with the supported HTTP methods for the request URI.
Since:
4.2.0
Author:
Sergio del Amo