@PathVariable and @PathParam both are used for accessing parameters from URI Template
Differences:
- As you mention
@PathVariableis from spring and@PathParamis from JAX-RS. @PathParamcan use with REST only, where@PathVariableused in Spring so it works in MVC and REST.