Skip to content

Instantly share code, notes, and snippets.

@adamw
Created October 12, 2017 12:30
Show Gist options
  • Save adamw/d112f955febcbd3cf8488a21a6abd5ca to your computer and use it in GitHub Desktop.
Save adamw/d112f955febcbd3cf8488a21a6abd5ca to your computer and use it in GitHub Desktop.
@Path("user/{userId}")
public String getUser(@PathParam("userId") userId) {
...
}
@rand0m86
Copy link

Please replace @PathParam("userId") userId with @PathParam("userId") String userId or whatewer type otherwise it's not a pure java 😉

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment