Tag: @pathparam
RESTful Web Services (JAX-RS) @PathParam Example
by  Java4s | 9 Comments
  [ Ask Question ]
In RESTful (JAX-RS) web services @PathParam annotation will be used to bind RESTful URL parameter values to the method arguments. Lets discuss with a simple example. Note: If you are new to RESTful web services or if you would…
RESTful Web Services (JAX-RS) @QueryParam Example
by  Java4s | 6 Comments
  [ Ask Question ]
In RESTful web services (JAX-RS) @QueryParam annotation will be used to get the query parameters from the URL, Observe carefully, i am saying we will retrieve the parameters only not their values. But in case of @PathParam we will get…