Skip to content

Instantly share code, notes, and snippets.

@jwalgemoed
Last active February 5, 2018 21:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jwalgemoed/367c2d5889105e684e70e3029cc78429 to your computer and use it in GitHub Desktop.
Save jwalgemoed/367c2d5889105e684e70e3029cc78429 to your computer and use it in GitHub Desktop.
@RestController
class PersonController(val databaseFromTheStoneAge: StoneAgeDB) {
@PostMapping("/person")
fun createPerson(@Valid @RequestBody person: Person) {
databaseFromTheStoneAge.save(person)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment