Snippets tagged “restful-web-service”
1 snippet uses this tag.
- When to use @QueryParam vs @PathParamJava
In a Java RESTful web service, the @QueryParam annotation is used to bind a query parameter to a method parameter, while the @PathParam annotation is used to bind a path parameter to a method parameter.