Hi,
I'm looking at the jersey implementation, including the provided
examples. I'm wondering on the use of annotations used in jersey that
are not standard when looking at the JAX-RS specification. In particular:
@GET vs. @HttpMethod("GET")
@Path(value = "/foo") vs. @UriTemplate("/foo")
I wonder why these are there, and if it is possible to use the
annotations specified by the standard in Jersey?
Akos