Package io.inverno.mod.web.server.annotation


package io.inverno.mod.web.server.annotation

Annotations for creating Web controllers.

  • Annotation Interfaces
    Class
    Description
    Binds the payload of a request to a web route method parameter.
    Binds the value of a HTTP cookie to a web route method parameter whose name indicates the name of the cookie.
    Binds the value of a form parameter to a web route method parameter whose name indicates the name of the parameter.
    Binds the value of a HTTP header to a web route method parameter whose name indicates the name of the header.
    Binds the value of a URI path parameter as defined by URIBuilder to a web route method parameter whose name indicates the name of the parameter.
    Binds the value of a HTTP query parameter to a web route method parameter whose name indicates the name of the parameter.
    Binds a server-sent events factory to a web route method parameter.
    The WebController annotation is used in conjunction with the @Bean annotation to indicate a web controller bean.
    Specifies a web route in a web controller.
    The WebRoutes annotation is used in conjunction with the @Bean annotation to indicate a web routes configurer bean.
    Specifies a WebSocket route in a web controller.