Top "Path-parameter" questions

RestTemplate: How to send URL and query parameters together

I am trying to pass path param and query params in a URL but I am getting a weird error. …

java resttemplate url-parameters query-parameters path-parameter
What is the difference between @PathParam and @PathVariable

To my knowledge both serves the same purpose. Except the fact that @PathVariable is from Spring MVC and @PathParam is …

spring-mvc jax-rs restful-url path-parameter
Servlet and path parameters like /xyz/{value}/test, how to map in web.xml?

Does servlet support urls as follows: /xyz/{value}/test where value could be replaced by text or number. How to …

servlets get web.xml path-parameter
Using Query String in REST Web Services

I thought one main characteristic and reason for using REST web services was to use path parameters rather than query …

web-services rest query-parameters path-parameter
Rest URL Standards - Multiple Path Parameters

We are building a restful service for serving employee data. We have an api which will return the list of …

url restful-url path-parameter
Wildcard path for servlet?

Having an @WebServlet(urlPatterns = "/myServlet/"). If the user goes to myapp/myServlet/other, I still want my servlet to catch. …

servlets wildcard url-pattern path-parameter