0

Hi I have The following service


@RequestMapping("/users/{userid}", method=RequestMethod.GET)
public String getUser(@PathVariable String userId) {
  // implementation omitted...
}

input parameter userId = 123/4324/234 how to handle / in url

userId come from database Please give an example

0 Answers0