Skip to content

Instantly share code, notes, and snippets.

@sirech
Created June 16, 2019 16:17
Show Gist options
  • Save sirech/edd979d89d43b660d4f1a31db86739cb to your computer and use it in GitHub Desktop.
Save sirech/edd979d89d43b660d4f1a31db86739cb to your computer and use it in GitHub Desktop.
@RestController
@RequestMapping("/users", produces = [MediaType.APPLICATION_JSON_VALUE])
class HelloController {
@GetMapping("{userId}")
fun user(@PathVariable("userId") userId: UserId): ResponseEntity<User>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment