November 2013
Intermediate to advanced
392 pages
8h 59m
English
A lot of JAX-RS is pulling information from an HTTP request and injecting it into a Java method. You may be interested in a fragment of the incoming URI. You might be interested in a URI query string value. The client might be sending critical HTTP headers or cookie values that your service needs to process the request. JAX-RS lets you grab this information à la carte, as you need it, through a set of injection annotations and APIs.
There are a lot of different things JAX-RS annotations can inject. Here is a list of those provided by the specification:
Usually, these annotations are used on the parameters of a JAX-RS resource method. When the JAX-RS provider receives an HTTP request, ...
Read now
Unlock full access