Injection binder providing support for JAX-RS and Jersey injection annotations.
Namely, standard injection support for the following set of JAX-RS and Jersey
annotations is provided by the binder:
@Context
-
Generic support for the
@Context
-based injection is provided so that
the @Context
annotation can be used interchangeably with e.g. standard
@Inject
dependency injection annotation.
@CookieParam
-
Support for cookie parameter injection as defined by the JAX-RS specification.
@FormParam
-
Support for form parameter injection as defined by the JAX-RS specification.
@HeaderParam
-
Support for request header parameter injection as defined by the JAX-RS specification.
@MatrixParam
-
Support for request URI matrix path parameter injection as defined by the JAX-RS specification.
@PathParam
-
Support for request URI path parameter injection as defined by the JAX-RS specification.
@QueryParam
-
Support for request URI query parameter injection as defined by the JAX-RS specification.
@Suspended
-
Support for
AsyncResponse
injection as defined by the JAX-RS specification.
@Uri
-
Jersey-specific support for
WebTarget
injection.